SimulatorTimer...: added method advance which is the new interface for previously used

operator++.
This commit is contained in:
Robert K
2015-01-28 15:25:11 +01:00
parent ae683efcfc
commit f771becf25
3 changed files with 9 additions and 0 deletions

View File

@@ -46,6 +46,9 @@ namespace Opm
/// \brief advance time by currentStepLength
AdaptiveSimulatorTimer& operator++ ();
/// \brief advance time by currentStepLength
void advance() { this->operator++ (); }
/// \brief provide and estimate for new time step size
void provideTimeStepEstimate( const double dt_estimate );