From: Reza Rastak Date: Mon, 16 Sep 2019 18:49:28 +0000 (-0700) Subject: fixed inconsistent state caused by calling TimestepControl::parse_parameters X-Git-Tag: v9.2.0-rc1~1101^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad16352f13daef7d08373703ae0f81fc971c5af5;p=dealii.git fixed inconsistent state caused by calling TimestepControl::parse_parameters --- diff --git a/source/algorithms/timestep_control.cc b/source/algorithms/timestep_control.cc index 9d5c865a29..a54a0a1599 100644 --- a/source/algorithms/timestep_control.cc +++ b/source/algorithms/timestep_control.cc @@ -79,6 +79,7 @@ TimestepControl::parse_parameters(ParameterHandler ¶m) strategy_val = uniform; else if (strategy == std::string("doubling")) strategy_val = doubling; + restart(); }