5#include <Eigen/IterativeLinearSolvers>
7#include <amdis/Initfile.hpp>
11 template <
class Precon>
14 static void init(std::string
const& prefix, Precon& solver) {}
17 template <
class T,
class I>
20 static void init(std::string
const& prefix, Eigen::IncompleteLUT<T,I>& solver)
22 auto dropTol = Parameters::get<double>(prefix +
"->drop tolerance");
24 solver.setDroptol(dropTol.value());
26 auto fillFactor = Parameters::get<int>(prefix +
"->fill factor");
28 solver.setFillfactor(fillFactor.value());
Definition: PreconConfig.hpp:13