diff --git a/ProcessLib/TimeLoop.cpp b/ProcessLib/TimeLoop.cpp index 2ce9cb19695085e60d61bf207acb9f60fc547611..dfdb452a7dcfa9cba033f9757f506ba36e1f2989 100644 --- a/ProcessLib/TimeLoop.cpp +++ b/ProcessLib/TimeLoop.cpp @@ -381,9 +381,9 @@ std::pair<double, bool> TimeLoop::computeTimeStepping( } // adjust step size considering external communciation_point_calculators - for (auto const& time_step_constain : time_step_constraints) + for (auto const& time_step_constraint : time_step_constraints) { - dt = std::min(dt, time_step_constain(t, dt)); + dt = std::min(dt, time_step_constraint(t, dt)); } // Check whether the time stepping is stabilized