Skip to content

Commit 4cb7e32

Browse files
committed
update printing
1 parent 65d5750 commit 4cb7e32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/result.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,6 @@ function Base.show(io::IO, ri::ResultIterator{Iter}) where {Iter}
279279
header = "ResultIterator"
280280
println(io, header)
281281
println(io, "="^(length(header)))
282-
!isnothing(ri.bitmask) && print(" and a filtering bitmask")
283282
println(io, "• start solutions: $(Iter.name.name)")
284283
tracker = ri.S.trackers[1]
285284
if tracker isa EndgameTracker
@@ -288,6 +287,7 @@ function Base.show(io::IO, ri::ResultIterator{Iter}) where {Iter}
288287
elseif tracker isa PolyhedralTracker
289288
println(io, "• homotopy: Polyhedral")
290289
end
290+
!isnothing(ri.bitmask) && println("• filtering bitmask")
291291
end
292292

293293
function Base.IteratorSize(ri::ResultIterator)

test/result_test.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ end
268268

269269
r2 = solve(
270270
F,
271-
solution.(w1);
271+
r2;
272272
start_subspace = l1,
273273
target_subspace = l2,
274274
iterator_only = true

0 commit comments

Comments
 (0)