Skip to content

Commit e310d91

Browse files
authored
Fix typo in stats docstring (#69)
1 parent 1d10536 commit e310d91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stats.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ abstract type AbstractExecutionStats end
6666
"""
6767
GenericExecutionStats(nlp; ...)
6868
69-
A GenericExecutionStats is a struct for storing output information of solvers.
69+
A GenericExecutionStats is a struct for storing the output information of solvers.
7070
It contains the following fields:
7171
- `status`: Indicates the output of the solver. Use `show_statuses()` for the full list;
7272
- `solution`: The final approximation returned by the solver (default: an uninitialized vector like `nlp.meta.x0`);
7373
- `objective`: The objective value at `solution` (default: `Inf`);
7474
- `dual_feas`: The dual feasibility norm at `solution` (default: `Inf`);
75-
- `primal_feas`: The primal feasibility norm at `solution` (default: `0.0` if uncontrained, `Inf` otherwise);
75+
- `primal_feas`: The primal feasibility norm at `solution` (default: `0.0` if unconstrained, `Inf` otherwise);
7676
- `multipliers`: The Lagrange multipliers wrt to the constraints (default: an uninitialized vector like `nlp.meta.y0`);
7777
- `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);
7878
- `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);

0 commit comments

Comments
 (0)