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/stats.jl
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -67,13 +67,13 @@ abstract type AbstractExecutionStats end
67
67
A GenericExecutionStats is a struct for storing output information of solvers.
68
68
It contains the following fields:
69
69
- `status`: Indicates the output of the solver. Use `show_statuses()` for the full list;
70
-
- `solution`: The final approximation returned by the solver (default: an uninitialzed vector like `nlp.meta.x0`);
70
+
- `solution`: The final approximation returned by the solver (default: an uninitialized vector like `nlp.meta.x0`);
71
71
- `objective`: The objective value at `solution` (default: `Inf`);
72
72
- `dual_feas`: The dual feasibility norm at `solution` (default: `Inf`);
73
73
- `primal_feas`: The primal feasibility norm at `solution` (default: `0.0` if uncontrained, `Inf` otherwise);
74
-
- `multipliers`: The Lagrange multiplers wrt to the constraints (default: an uninitialzed vector like `nlp.meta.y0`);
75
-
- `multipliers_L`: The Lagrange multiplers wrt to the lower bounds on the variables (default: an uninitialzed vector like `nlp.meta.x0` if there are bounds, or a zero-length vector if not);
76
-
- `multipliers_U`: The Lagrange multiplers wrt to the upper bounds on the variables (default: an uninitialzed vector like `nlp.meta.x0` if there are bounds, or a zero-length vector if not);
74
+
- `multipliers`: The Lagrange multipliers wrt to the constraints (default: an uninitialized vector like `nlp.meta.y0`);
75
+
- `multipliers_L`: The Lagrange multipliers wrt to the lower bounds on the variables (default: an uninitialized vector like `nlp.meta.x0` if there are bounds, or a zero-length vector if not);
76
+
- `multipliers_U`: The Lagrange multipliers wrt to the upper bounds on the variables (default: an uninitialized vector like `nlp.meta.x0` if there are bounds, or a zero-length vector if not);
77
77
- `iter`: The number of iterations computed by the solver (default: `-1`);
78
78
- `elapsed_time`: The elapsed time computed by the solver (default: `Inf`);
79
79
- `solver_specific::Dict{Symbol,Any}`: A solver specific dictionary.
@@ -87,7 +87,7 @@ The following fields indicate whether the information above has been updated and
87
87
- `solution_reliable`
88
88
- `objective_reliable`
89
89
- `residuals_reliable` (for `dual_feas` and `primal_feas`)
90
-
- `multipliers_reliable` (for `multiplers`)
90
+
- `multipliers_reliable` (for `multipliers`)
91
91
- `bounds_multipliers_reliable` (for `multipliers_L` and `multipliers_U`)
0 commit comments