Skip to content
Snippets Groups Projects
Commit f85bd136 authored by Tom Fischer's avatar Tom Fischer Committed by Dmitri Naumov
Browse files

[PL/TimeLoop] Fix spelling

parent 6835c814
No related branches found
No related tags found
No related merge requests found
...@@ -381,9 +381,9 @@ std::pair<double, bool> TimeLoop::computeTimeStepping( ...@@ -381,9 +381,9 @@ std::pair<double, bool> TimeLoop::computeTimeStepping(
} }
// adjust step size considering external communciation_point_calculators // 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 // Check whether the time stepping is stabilized
......
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