Skip to content

Commit d7afa4b

Browse files
committed
diffeq::integrators::ode::DOP853Integrator → diffeq::DOP853Integrator
1 parent 565593c commit d7afa4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/test_dop853.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ TEST_F(DOP853Test, TimeoutFailureHandling) {
255255
dydt[1] = -lambda * y[1];
256256
};
257257

258-
diffeq::integrators::ode::DOP853Integrator<std::vector<double>> integrator(stiff_system, 1e-12, 1e-15); // Very tight tolerances
258+
diffeq::DOP853Integrator<std::vector<double>> integrator(stiff_system, 1e-12, 1e-15); // Very tight tolerances
259259

260260
std::vector<double> y = {1.0, 1.0};
261261
integrator.set_time(0.0);

0 commit comments

Comments
 (0)