Make starting timestep more explicitly known

One-based or zero-based? Better be documented (in a way that doesn't
promote hard-coding in the clients!)
This commit is contained in:
Roland Kaufmann
2013-11-26 12:41:02 +01:00
parent 8159104218
commit 2ba7b3329d
2 changed files with 4 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ namespace Opm
/// Default constructor.
SimulatorTimer::SimulatorTimer()
: current_step_(0),
: current_step_(FIRST_STEP),
current_time_(0.0),
start_date_(2012,1,1) // A really arbitrary default starting value?!
{