Skip to content

Commit

Permalink
The default time for an app should not be 0 (or problems with recover…
Browse files Browse the repository at this point in the history
…ing as the start time is not explicitly set by the Transient executioner) idaholab#15802
  • Loading branch information
vincentlaboure committed Oct 29, 2020
1 parent d8f1bb1 commit 9c2a8f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/src/base/MooseApp.C
Expand Up @@ -291,7 +291,7 @@ MooseApp::MooseApp(InputParameters parameters)
_file_base_set_by_user(false),
_output_position_set(false),
_start_time_set(false),
_start_time(0.0),
_start_time(-std::numeric_limits<Real>::max()),
_global_time_offset(0.0),
_output_warehouse(*this),
_input_parameter_warehouse(new InputParameterWarehouse()),
Expand Down

0 comments on commit 9c2a8f7

Please sign in to comment.