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

Use absolute errors for now

parent e232946b
No related branches found
No related tags found
No related merge requests found
......@@ -254,7 +254,8 @@ int main(int argc, char *argv[]) {
LoopSolver<VectorType> overallSolver(
multigridStep, parset.get<size_t>("solver.tnnmg.maxiterations"),
solver_tolerance, &energyNorm, verbosity);
solver_tolerance, &energyNorm, verbosity,
false); // absolute error
overallSolver.solve();
if (!parset.get<bool>("boundary.friction.state.evolve"))
......@@ -299,7 +300,8 @@ int main(int argc, char *argv[]) {
LoopSolver<VectorType> overallSolver(
multigridStep, parset.get<size_t>("solver.tnnmg.maxiterations"),
solver_tolerance, &energyNorm, verbosity);
solver_tolerance, &energyNorm, verbosity,
false); // absolute error
overallSolver.solve();
if (!parset.get<bool>("boundary.friction.state.evolve"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment