Skip to content
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion tutorials/introduction-to-jsosolvers/index.jmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ The solvers `tron` and `trunk` both have a specialized implementation for input

The following examples illustrate this specialization.

To list the allowed least-squares subsolvers for these specializations:

```julia
JSOSolvers.trunkls_allowed_subsolvers
JSOSolvers.tronls_allowed_subsolvers
```

```julia
using JSOSolvers, ADNLPModels
f(x) = (x[1] - 1)^2 + 4 * (x[2] - x[1]^2)^2
Expand Down Expand Up @@ -111,7 +118,7 @@ solver = LBFGSSolver(nlp; mem = 5);
stats = solve!(solver, nlp)
```

The following table provides the correspondance between the solvers and the solvers structures:
The following table provides the correspondence between the algorithms and their solver structures:

| Algorithm | Solver structure |
| ------------------- | ---------------- |
Expand Down
Loading