ikarus-project / ikarus

Ikarus is a C++-based library that uses DUNE modules to solve partial differential equations with the finite element method and more.
https://ikarus-project.github.io/
Other
5 stars 3 forks source link

Initial Predictor for standard arc length method needs to be generalised for sparse and dense solvers #178

Closed tarun-mitruka closed 8 months ago

tarun-mitruka commented 1 year ago
template <typename NonLinearOperator>
void initialPrediction(NonLinearOperator& nonLinearOperator, SubsidiaryArgs& args) {
  auto linearSolver = Ikarus::ILinearSolver<double>(Ikarus::SolverTypeTag::d_LDLT);  // for the linear predictor step
...
}
rath3t commented 10 months ago

91