#include <MockEulerIvpOdeSolver.hpp>


Public Member Functions | |
| unsigned | GetCallCount () |
Protected Member Functions | |
| virtual void | InternalSolve (AbstractOdeSystem *pAbstractOdeSystem, std::vector< double > &rCurrentYValues, std::vector< double > &rWorkingMemory, double startTime, double endTime, double timeStep) |
Private Attributes | |
| unsigned | mCallCount |
Definition at line 43 of file MockEulerIvpOdeSolver.hpp.
| void MockEulerIvpOdeSolver::InternalSolve | ( | AbstractOdeSystem * | pAbstractOdeSystem, | |
| std::vector< double > & | rCurrentYValues, | |||
| std::vector< double > & | rWorkingMemory, | |||
| double | startTime, | |||
| double | endTime, | |||
| double | timeStep | |||
| ) | [protected, virtual] |
Method that actually performs the solving on behalf of the public Solve methods.
| pAbstractOdeSystem | the system to solve | |
| rCurrentYValues | the current (initial) state; results will also be returned in here | |
| rWorkingMemory | working memory; same size as rCurrentYValues | |
| startTime | initial time | |
| endTime | time to solve to | |
| timeStep | dt |
Reimplemented from AbstractOneStepIvpOdeSolver.
Definition at line 45 of file MockEulerIvpOdeSolver.cpp.
References AbstractOneStepIvpOdeSolver::InternalSolve().
1.5.5