Open
Description
Is your feature request related to a problem? Please describe.
For rays one has:
julia> c = positive_hull([3 1; 0 1])
Polyhedral cone in ambient dimension 2
julia> rays(c)
2-element SubObjectIterator{RayVector{QQFieldElem}}:
[1, 1//3]
[0, 1]
julia> matrix(ZZ,rays(c))
[3 1]
[0 1]
I would like something similar for facets. I know there is halfspace_matrix_pair
:
julia> halfspace_matrix_pair(facets(c))
(A = [-1 0; 1 -3], b = QQFieldElem[0, 0])
julia> (A,b) = halfspace_matrix_pair(facets(c))
(A = [-1 0; 1 -3], b = QQFieldElem[0, 0])
julia> typeof(A)
QQMatrix
Describe the solution you'd like
Would something like halfspace_matrix_pair(ZZ, facets(c))
be feasible?
Describe alternatives you've considered
I considered spending time with my kids, but filed this issue instead.
Apologies if this already exists in some form, then please let me know.