Skip to content

Commit 74c3169

Browse files
Update optimization_solutions.jl
1 parent c232aec commit 74c3169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/solutions/optimization_solutions.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ Representation of the solution to a non-linear optimization defined by an Optimi
4949
5050
## Fields
5151
52-
- `u`: the representation of the optimization's solution.
52+
- `x`: the representation of the optimization's solution.
5353
- `cache::AbstractOptimizationCache`: the optimization cache` that was solved.
5454
- `alg`: the algorithm type used by the solver.
5555
- `objective`: Objective value of the solution
5656
- `retcode`: the return code from the solver. Used to determine whether the solver solved
5757
successfully or whether it exited due to an error. For more details, see
5858
[the return code documentation](https://docs.sciml.ai/SciMLBase/stable/interfaces/Solutions/#retcodes).
59-
- `original`: if the solver is wrapped from an alternative solver ecosystem, such as
59+
- `original`: if the solver is wrapped from a external solver, e.g.
6060
Optim.jl, then this is the original return from said solver library.
6161
- `stats`: statistics of the solver, such as the number of function evaluations required.
6262
"""

0 commit comments

Comments
 (0)