Skip to content

Commit 0e98869

Browse files
kellertuerlkdvos
andauthored
Update src/stopping_criterion.jl
Co-authored-by: Lukas Devos <ldevos98@gmail.com>
1 parent ba7bc85 commit 0e98869

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/stopping_criterion.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ struct StopWhenAny{TCriteria<:Tuple} <: StoppingCriterion
154154
end
155155

156156
function indicates_convergence(sc::StopWhenAny)
157-
return all(indicates_convergence(ci) for ci in sc.criteria)
157+
return all(indicates_convergence, sc.criteria)
158158
end
159159
function show(io::IO, sc::StopWhenAny)
160160
s = ""

0 commit comments

Comments
 (0)