You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update tutorials to use JSOSolvers 0.14 with Symbol-based subsolver API
- Update JSOSolvers from 0.11 to 0.14 in Project.toml files
- Update Krylov from 0.9 to 0.10 (required by JSOSolvers 0.14)
- Replace Type-based subsolver API with Symbol-based API:
* subsolver_type = CglsSolver → subsolver = :cgls
* subsolver_type = LsmrSolver → subsolver = :lsmr
* etc.
- Remove Krylov.jl import (no longer needed for subsolver types)
- Remove compatibility note about JSOSolvers 0.11
This addresses issue #145 by updating to the new subsolver API
introduced in JSOSolvers 0.14.0.
Affected tutorials:
- tutorials/advanced-jsosolvers/
- tutorials/introduction-to-jsosolvers/
Tests: All package tests pass ✓
Copy file name to clipboardExpand all lines: tutorials/advanced-jsosolvers/index.jmd
+6-12Lines changed: 6 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,6 @@ author: "Tangi Migot"
8
8
9
9
This tutorial showcases some advanced features of solvers in JSOSolvers.
10
10
11
-
**Note**: This tutorial is compatible with JSOSolvers 0.11. The subsolver is selected using the `subsolver_type` parameter with Krylov solver types (e.g., `CglsSolver`, `LsmrSolver`).
0 commit comments