Expand description
Linear solver type for implicit ODE solvers.
This module defines LinearSolverType, an enum specifying which linear solver to use inside implicit ODE methods (BDF, ESDIRK, TR-BDF2):
- LinearSolverType::Default — the solver’s default choice (typically LU).
- LinearSolverType::Lu — LU decomposition (dense or sparse as appropriate).
- LinearSolverType::Klu — KLU sparse linear solver (requires
suitesparsefeature).