We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0007a01 + 7658f14 commit 37656d1Copy full SHA for 37656d1
src/utils.jl
@@ -76,6 +76,7 @@ const STOP_REASON_MAP = Dict(
76
r"Delta fitness .* below tolerance .*" => ReturnCode.Success,
77
r"Fitness .* within tolerance .* of optimum" => ReturnCode.Success,
78
r"CONVERGENCE: NORM_OF_PROJECTED_GRADIENT_<=_PGTOL" => ReturnCode.Success,
79
+ r"Unrecognized stop reason: CONVERGENCE: REL_REDUCTION_OF_F_<=_FACTR*EPSMCH" => ReturnCode.Success,
80
r"Terminated" => ReturnCode.Terminated,
81
r"MaxIters|MAXITERS_EXCEED|Max number of steps .* reached" => ReturnCode.MaxIters,
82
r"MaxTime|TIME_LIMIT" => ReturnCode.MaxTime,
0 commit comments