Skip to content
Snippets Groups Projects
Commit ee367ad9 authored by Elias Pipping's avatar Elias Pipping
Browse files

[Cleanup] Move anything FPI-related to v.fpi

parent 7d59f4e4
No related branches found
No related tags found
No related merge requests found
......@@ -471,13 +471,11 @@ int main(int argc, char *argv[]) {
VectorType v = v_initial;
SingletonVectorType alpha = alpha_initial;
auto const state_fpi_max =
parset.get<size_t>("solver.tnnmg.fixed_point_iterations");
auto const fixedPointTolerance =
parset.get<double>("solver.tnnmg.fixed_point_tolerance");
auto const relaxation = parset.get<double>("solver.relaxation");
auto const state_fpi_max = parset.get<size_t>("v.fpi.maximumIterations");
auto const fixedPointTolerance = parset.get<double>("v.fpi.tolerance");
auto const relaxation = parset.get<double>("v.fpi.relaxation");
auto const requiredReduction =
parset.get<double>("solver.requiredReduction");
parset.get<double>("v.fpi.requiredReduction");
auto const printProgress = parset.get<bool>("io.printProgress");
auto const verbosity =
parset.get<Solver::VerbosityMode>("v.solver.verbosity");
......
......@@ -46,16 +46,12 @@ tolerance = 1e-10
maximumIterations = 100000
verbosity = quiet
[solver]
[v.fpi]
tolerance = 1e-10
maximumIterations = 10000
relaxation = 0.5
requiredReduction = 0.5
[solver.tnnmg]
maxiterations = 1000000
fixed_point_iterations = 10000
fixed_point_tolerance = 1e-10
[solver.tnnmg.linear]
maxiterations = 1000000
tolerance = 1e-10
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment