diff options
Diffstat (limited to 'Project/Exponential.cpp')
-rw-r--r-- | Project/Exponential.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project/Exponential.cpp b/Project/Exponential.cpp index 64af421..e07525b 100644 --- a/Project/Exponential.cpp +++ b/Project/Exponential.cpp @@ -129,7 +129,7 @@ void Exponential::SetValues(double aValue, double bValue) m_bValue = bValue; } -bool Exponential::Solve(double input, double timeStep) +bool Exponential::Solve(double input, double timeStep, double currentTime) { m_output = m_aValue * std::exp(m_bValue * input); return true; |