File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
tutorials/introduction-to-jsosolvers Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,13 @@ The solvers `tron` and `trunk` both have a specialized implementation for input
4444
4545The following examples illustrate this specialization.
4646
47+ To list the allowed least-squares subsolvers for these specializations:
48+
49+ ```julia
50+ JSOSolvers.trunkls_allowed_subsolvers
51+ JSOSolvers.tronls_allowed_subsolvers
52+ ```
53+
4754```julia
4855using JSOSolvers, ADNLPModels
4956f(x) = (x[1] - 1)^2 + 4 * (x[2] - x[1]^2)^2
@@ -111,7 +118,7 @@ solver = LBFGSSolver(nlp; mem = 5);
111118stats = solve!(solver, nlp)
112119```
113120
114- The following table provides the correspondance between the solvers and the solvers structures:
121+ The following table provides the correspondence between the algorithms and their solver structures:
115122
116123| Algorithm | Solver structure |
117124| ------------------- | ---------------- |
You can’t perform that action at this time.
0 commit comments