You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return"At iteration $(c.at_iteration) the algorithm performed a step with a relative a posteriori cost change ($(abs(c.last_change))) less than or equal to $(c.tolerance)."
527
+
return"At iteration $(c.at_iteration) the algorithm performed a step with a relative a posteriori cost change ($(abs(c.last_change))) less than or equal to $(c.threshold)."
return(_is_inline(context) ?"(fₖ- fₖ₊₁)/max(|fₖ|, |fₖ₊₁|, 1) = $(abs(c.last_change)) ≤ $(c.threshold):$(_MANOPT_INDENT)":"A stopping criterion to stop when the relative posteriori cost change is less than $(c.threshold)\n$(_MANOPT_INDENT)") *"$s"
535
536
end
536
-
function Base.show(io::IO, ::MIME"text/plain", c::StopWhenRelativeAPosterioriCostChangeLessOrEqual)
537
-
returnprint(
538
-
io,
539
-
"StopWhenRelativeAPosterioriCostChangeLessOrEqual with threshold $(c.tolerance).\n$(status_summary(c))",
540
-
)
537
+
function Base.show(io::IO, c::StopWhenRelativeAPosterioriCostChangeLessOrEqual)
0 commit comments