Replace assert(false) with throw SimulationStoppingError(To be implemented.)
This commit is contained in:
committed by
Chris Hennes
parent
bacb65f9c0
commit
b9ba0976f2
@@ -20,12 +20,12 @@ void ICKineIntegrator::runInitialConditionTypeSolution()
|
||||
|
||||
void ICKineIntegrator::iStep(size_t)
|
||||
{
|
||||
assert(false);
|
||||
throw SimulationStoppingError("To be implemented.");
|
||||
}
|
||||
|
||||
void ICKineIntegrator::selectOrder()
|
||||
{
|
||||
assert(false);
|
||||
throw SimulationStoppingError("To be implemented.");
|
||||
}
|
||||
|
||||
void ICKineIntegrator::preRun()
|
||||
@@ -36,15 +36,15 @@ void ICKineIntegrator::preRun()
|
||||
|
||||
void ICKineIntegrator::firstStep()
|
||||
{
|
||||
assert(false);
|
||||
throw SimulationStoppingError("To be implemented.");
|
||||
}
|
||||
|
||||
void ICKineIntegrator::subsequentSteps()
|
||||
{
|
||||
assert(false);
|
||||
throw SimulationStoppingError("To be implemented.");
|
||||
}
|
||||
|
||||
void MbD::ICKineIntegrator::nextStep()
|
||||
{
|
||||
assert(false);
|
||||
throw SimulationStoppingError("To be implemented.");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user