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
Copy file name to clipboardExpand all lines: src/AL_alg.jl
+13-5Lines changed: 13 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -134,7 +134,9 @@ Notably, you can access, and modify, the following:
134
134
- `stats.iter`: current iteration counter;
135
135
- `stats.objective`: current objective function value;
136
136
- `stats.status`: current status of the algorithm. Should be `:unknown` unless the algorithm has attained a stopping criterion. Changing this to anything will stop the algorithm, but you should use `:user` to properly indicate the intention;
137
-
- `stats.elapsed_time`: elapsed time in seconds.
137
+
- `stats.elapsed_time`: elapsed time in seconds;
138
+
- `stats.solver_specific[:smooth_obj]`: current value of the smooth part of the objective function;
139
+
- `stats.solver_specific[:nonsmooth_obj]`: current value of the nonsmooth part of the objective function.
138
140
"""
139
141
mutable struct ALSolver{T, V, M, ST} <:AbstractOptimizationSolver
0 commit comments