Skip to content

Commit

Permalink
adjusted doctest print to new PointVector multiplication return type
Browse files Browse the repository at this point in the history
  • Loading branch information
alexej-jordan committed Sep 18, 2023
1 parent 24d8d71 commit ebf08ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PolyhedralGeometry/solving_integrally.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ SubObjectIterator{PointVector{ZZRingElem}}
julia> for x in it
print(A*x," ")
end
ZZRingElem[7] ZZRingElem[7] ZZRingElem[7] ZZRingElem[7] ZZRingElem[7] ZZRingElem[7] ZZRingElem[7] ZZRingElem[7]
[7] [7] [7] [7] [7] [7] [7] [7]
```
"""
solve_mixed(as::Type{T}, A::ZZMatrix, b::ZZMatrix, C::ZZMatrix, d::ZZMatrix) where {T} = solve_mixed(T, A, b, C, d)
Expand Down Expand Up @@ -106,7 +106,7 @@ SubObjectIterator{PointVector{ZZRingElem}}
julia> for x in it
print(A*x," ")
end
ZZRingElem[3] ZZRingElem[3] ZZRingElem[3] ZZRingElem[3]
[3] [3] [3] [3]
```
"""
solve_mixed(as::Type{T}, A::ZZMatrix, b::ZZMatrix, C::ZZMatrix) where {T} = solve_mixed(T, A, b, C, zero_matrix(FlintZZ, nrows(C), 1))
Expand Down

0 comments on commit ebf08ab

Please sign in to comment.