Skip to content

Commit 1f87153

Browse files
authored
Update index.jmd
1 parent 613a092 commit 1f87153

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tutorials/advanced-jsosolvers/index.jmd

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ This tutorial showcases some advanced features of solvers in JSOSolvers.
1212
using JSOSolvers
1313
```
1414

15-
Migration note (JSOSolvers ≥ 0.11): subsolvers are now selected with a Symbol via the `subsolver` keyword. Replace any old usages like `trunk(nlp, subsolver_type = CglsSolver)` with `trunk(nlp; subsolver = :cgls)`. See `JSOSolvers.trunkls_allowed_subsolvers` and `JSOSolvers.tronls_allowed_subsolvers` for the list of accepted symbols.
16-
1715
We benchmark different subsolvers used in the solver TRUNK for unconstrained nonlinear least squares problems.
1816
The first step is to select a set of problems that are nonlinear least squares.
1917

@@ -76,8 +74,6 @@ solvers = Dict(
7674
)
7775
```
7876

79-
If needed, you can also pass tolerances and runtime limits directly to `trunk` while selecting the subsolver:
80-
8177
```julia
8278
RTOL = 1e-6; ATOL = 1e-8; max_time = 60.0
8379
solvers = Dict(

0 commit comments

Comments
 (0)