File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -276,8 +276,18 @@ path_results(ri::ResultIterator) = collect(ri)
276
276
277
277
278
278
function Base. show (io:: IO , ri:: ResultIterator{Iter} ) where {Iter}
279
- print (io, " ResultIterator induced by $Iter " )
279
+ header = " ResultIterator"
280
+ println (io, header)
281
+ println (io, " =" ^ (length (header)))
280
282
! isnothing (ri. bitmask) && print (" and a filtering bitmask" )
283
+ println (io, " • start solutions: $(Iter. name. name) " )
284
+ tracker = ri. S. trackers[1 ]
285
+ if tracker isa EndgameTracker
286
+ n = typeof (tracker. tracker. homotopy)
287
+ println (io, " • homotopy: $(n. name. name) " )
288
+ elseif tracker isa PolyhedralTracker
289
+ println (io, " • homotopy: Polyhedral" )
290
+ end
281
291
end
282
292
283
293
function Base. IteratorSize (ri:: ResultIterator )
You can’t perform that action at this time.
0 commit comments