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

Move an assignment out of a loop

parent a9badef9
No related branches found
No related tags found
No related merge requests found
......@@ -358,6 +358,8 @@ int main(int argc, char *argv[]) {
break;
}
auto const state_fpi_max =
parset.get<size_t>("solver.tnnmg.fixed_point_iterations");
for (size_t run = 1; run <= timesteps; ++run) {
double const time = tau * run;
{
......@@ -375,8 +377,6 @@ int main(int argc, char *argv[]) {
problem_A);
VectorType u_saved;
auto const state_fpi_max =
parset.get<size_t>("solver.tnnmg.fixed_point_iterations");
for (size_t state_fpi = 1; state_fpi <= state_fpi_max; ++state_fpi) {
auto myGlobalNonlinearity =
assemble_nonlinearity<MatrixType, VectorType>(
......
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