Skip to content
Snippets Groups Projects
Commit a8489a63 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MaL] ODE: Merge init() and setFunction() methods.

parent 1d29ac16
No related branches found
No related tags found
No related merge requests found
...@@ -34,14 +34,12 @@ public: ...@@ -34,14 +34,12 @@ public:
using JacobianFunction = using JacobianFunction =
MathLib::JacobianFunction<NumEquations, FunctionArguments...>; MathLib::JacobianFunction<NumEquations, FunctionArguments...>;
virtual void init() = 0; virtual void setFunction(Function f, JacobianFunction df,
FunctionArguments&... args) = 0;
virtual void setTolerance(const Arr& abstol, const double reltol) = 0; virtual void setTolerance(const Arr& abstol, const double reltol) = 0;
virtual void setTolerance(const double abstol, const double reltol) = 0; virtual void setTolerance(const double abstol, const double reltol) = 0;
virtual void setFunction(Function f, JacobianFunction df,
FunctionArguments&... args) = 0;
virtual void setIC(const double t0, const Arr& y0) = 0; virtual void setIC(const double t0, const Arr& y0) = 0;
virtual void preSolve() = 0; virtual void preSolve() = 0;
......
...@@ -142,9 +142,12 @@ public: ...@@ -142,9 +142,12 @@ public:
using Function = typename Interface::Function; using Function = typename Interface::Function;
using JacobianFunction = typename Interface::JacobianFunction; using JacobianFunction = typename Interface::JacobianFunction;
void init() override void setFunction(Function f, JacobianFunction df,
FunctionArguments&... args) override
{ {
Implementation::init(NumEquations); Implementation::init(NumEquations);
_handles.reset(new detail::Handles<NumEquations, FunctionArguments...>{
f, df, args...});
Implementation::setFunction(_handles.get()); Implementation::setFunction(_handles.get());
} }
...@@ -158,13 +161,6 @@ public: ...@@ -158,13 +161,6 @@ public:
Implementation::setTolerance(abstol, reltol); Implementation::setTolerance(abstol, reltol);
} }
void setFunction(Function f, JacobianFunction df,
FunctionArguments&... args) override
{
_handles.reset(new detail::Handles<NumEquations, FunctionArguments...>{
f, df, args...});
}
void setIC(const double t0, const Arr& y0) override void setIC(const double t0, const Arr& y0) override
{ {
Implementation::setIC(t0, y0.data()); Implementation::setIC(t0, y0.data());
......
...@@ -64,7 +64,6 @@ TEST(MathLibCVodeTest, Exponential) ...@@ -64,7 +64,6 @@ TEST(MathLibCVodeTest, Exponential)
auto ode_solver = MathLib::createOdeSolver<1>(config); auto ode_solver = MathLib::createOdeSolver<1>(config);
ode_solver->setFunction(f, nullptr); ode_solver->setFunction(f, nullptr);
ode_solver->init();
ode_solver->setTolerance(1e-8, 1e-6); ode_solver->setTolerance(1e-8, 1e-6);
ode_solver->setIC(t0, {y0}); ode_solver->setIC(t0, {y0});
...@@ -103,8 +102,6 @@ TEST(MathLibCVodeTest, ExponentialExtraData) ...@@ -103,8 +102,6 @@ TEST(MathLibCVodeTest, ExponentialExtraData)
ExtraData data; ExtraData data;
ode_solver->setFunction(f_extra, nullptr, data); ode_solver->setFunction(f_extra, nullptr, data);
ode_solver->init();
ode_solver->setTolerance(1e-8, 1e-6); ode_solver->setTolerance(1e-8, 1e-6);
ode_solver->setIC(t0, {y0}); ode_solver->setIC(t0, {y0});
...@@ -159,7 +156,6 @@ TEST(MathLibCVodeTest, ExponentialWithJacobian) ...@@ -159,7 +156,6 @@ TEST(MathLibCVodeTest, ExponentialWithJacobian)
auto ode_solver = MathLib::createOdeSolver<1>(config); auto ode_solver = MathLib::createOdeSolver<1>(config);
ode_solver->setFunction(f, df); ode_solver->setFunction(f, df);
ode_solver->init();
ode_solver->setTolerance(1e-10, 1e-8); ode_solver->setTolerance(1e-10, 1e-8);
ode_solver->setIC(t0, {y0}); ode_solver->setIC(t0, {y0});
...@@ -200,7 +196,6 @@ TEST(MathLibCVodeTest, ExponentialWithJacobianNewton) ...@@ -200,7 +196,6 @@ TEST(MathLibCVodeTest, ExponentialWithJacobianNewton)
auto ode_solver = MathLib::createOdeSolver<1>(config); auto ode_solver = MathLib::createOdeSolver<1>(config);
ode_solver->setFunction(f, df); ode_solver->setFunction(f, df);
ode_solver->init();
ode_solver->setTolerance(1e-6, 1e-6); ode_solver->setTolerance(1e-6, 1e-6);
ode_solver->setIC(t0, {y0}); ode_solver->setIC(t0, {y0});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment