File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -100,14 +100,15 @@ function deduce_retcode(retcode::Symbol)
100
100
return ReturnCode. Default
101
101
elseif retcode == :Success || retcode == :EXACT_SOLUTION_LEFT ||
102
102
retcode == :FLOATING_POINT_LIMIT || retcode == :true || retcode == :OPTIMAL ||
103
- retcode == :LOCALLY_SOLVED || retcode == :ROUNDOFF_LIMITED || retcode == :SUCCESS
103
+ retcode == :LOCALLY_SOLVED || retcode == :ROUNDOFF_LIMITED || retcode == :SUCCESS ||
104
+ retcode == :STOPVAL_REACHED || retcode == :FTOL_REACHED || retcode == :XTOL_REACHED
104
105
return ReturnCode. Success
105
106
elseif retcode == :Terminated
106
107
return ReturnCode. Terminated
107
108
elseif retcode == :MaxIters || retcode == :MAXITERS_EXCEED ||
108
109
retcode == :MAXEVAL_REACHED
109
110
return ReturnCode. MaxIters
110
- elseif retcode == :MaxTime || retcode == :TIME_LIMIT
111
+ elseif retcode == :MaxTime || retcode == :TIME_LIMIT || retcode == :MAXTIME_REACHED
111
112
return ReturnCode. MaxTime
112
113
elseif retcode == :DtLessThanMin
113
114
return ReturnCode. DtLessThanMin
You can’t perform that action at this time.
0 commit comments