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

Do not call parset_get needlessly

parent 37306f87
No related branches found
No related tags found
No related merge requests found
......@@ -313,8 +313,7 @@ int main(int argc, char *argv[]) {
parset.get<bool>("verbose") ? Solver::FULL : Solver::QUIET;
LoopSolver<VectorType> overallSolver(
multigridStep, parset.get<size_t>("solver.tnnmg.maxiterations"),
parset.get<double>("solver.tolerance"), &energyNorm, verbosity,
false); // absolute error
solver_tolerance, &energyNorm, verbosity, false); // absolute error
std::fstream coordinate_writer("coordinates", std::fstream::out);
for (size_t i = 0; i < frictionalNodes.size(); ++i)
......
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