File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -152,9 +152,9 @@ function indicates_convergence(stop_when_all::StopWhenAll)
152152end
153153
154154function Base. show (io:: IO , :: MIME"text/plain" , stop_when_all:: StopWhenAll )
155- print (io, " StopWhenAll with the Stopping Criteria" )
155+ print (io, " StopWhenAll with the Stopping Criteria: " )
156156 for stopping_criterion in stop_when_all. criteria
157- println (io)
157+ print (io, " \n " )
158158 replace (io, string (stopping_criterion), " \n " => " \n " ) # increase indent
159159 end
160160 return nothing
205205function Base. show (io:: IO , :: MIME"text/plain" , stop_when_any:: StopWhenAny )
206206 print (io, " StopWhenAny with the Stopping Criteria" )
207207 for stopping_criterion in stop_when_any. criteria
208- println (io)
208+ print (io, " \n " )
209209 replace (io, string (stopping_criterion), " \n " => " \n " ) # increase indent
210210 end
211211 return nothing
You can’t perform that action at this time.
0 commit comments