Skip to content

Commit

Permalink
Make new API non-pure virtual for now (Closes idaholab#7842)
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsayad committed Dec 5, 2017
1 parent 71f475e commit 93be2d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/include/multiapps/MultiApp.h
Expand Up @@ -101,7 +101,7 @@ class MultiApp : public MooseObject, public SetupInterface, public Restartable
* which is called either directly from solveStep() for loose coupling cases
* or through finishStep() for Picard coupling cases)
*/
virtual void incrementTStep() = 0;
virtual void incrementTStep() {}

/**
* Deprecated method. Use finishStep
Expand All @@ -118,7 +118,7 @@ class MultiApp : public MooseObject, public SetupInterface, public Restartable
* for Picard calculations because for loosely coupled calculations the executioners' endStep and
* postStep methods are called from solveStep().
*/
virtual void finishStep() = 0;
virtual void finishStep() {}

/**
* Save off the state of every Sub App
Expand Down

0 comments on commit 93be2d9

Please sign in to comment.