Skip to content
Snippets Groups Projects
Commit d6345a5d authored by Sander, Oliver's avatar Sander, Oliver
Browse files

Do not hardwire the number of inner multigrid iterations

parent 91862454
Branches
No related tags found
No related merge requests found
......@@ -426,7 +426,7 @@ void MixedRiemannianTrustRegionSolver<GridType,Basis0,TargetSpace0,Basis1,Target
std::cout << "Solve quadratic problem..." << std::endl;
double oldEnergy = 0;
Dune::Timer solutionTimer;
for (int ii=0; ii<200; ii++)
for (int ii=0; ii<innerIterations_; ii++)
{
residual0 = rhs_global0;
stiffnessMatrix01.mmv(corr_global1, residual0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment