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 a197b93..e0daeef 100644 --- a/Project/Exponential.cpp +++ b/Project/Exponential.cpp @@ -112,7 +112,7 @@ void Exponential::SetValues(double aValue, double bValue) m_bValue = bValue; } -bool Exponential::Solve(double input) +bool Exponential::Solve(double input, double timeStep) { m_output = m_aValue * std::exp(m_bValue * input); return true; |