Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
200km committed Jul 20, 2024
1 parent 9a32099 commit c182ed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/math_physics/numerical_integration/test_runge_kutta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ TEST(NUMERICAL_INTEGRATION, IntegrateLinearNumericalIntegratorManagerRkf) {
double step_width_s = 0.1;
numerical_integration::ExampleLinearOde ode;
numerical_integration::NumericalIntegratorManager<1> numerical_integrator(step_width_s, ode,
numerical_integration::NumericalIntegrationMethod::kRkf);
numerical_integration::NumericalIntegrationMethod::kRkf);

math::Vector<1> state = numerical_integrator.GetIntegrator()->GetState();
EXPECT_DOUBLE_EQ(0.0, state[0]);
Expand All @@ -139,7 +139,7 @@ TEST(NUMERICAL_INTEGRATION, IntegrateLinearNumericalIntegratorManagerDp5) {
double step_width_s = 0.1;
numerical_integration::ExampleLinearOde ode;
numerical_integration::NumericalIntegratorManager<1> numerical_integrator(step_width_s, ode,
numerical_integration::NumericalIntegrationMethod::kDp5);
numerical_integration::NumericalIntegrationMethod::kDp5);

math::Vector<1> state = numerical_integrator.GetIntegrator()->GetState();
EXPECT_DOUBLE_EQ(0.0, state[0]);
Expand Down

0 comments on commit c182ed6

Please sign in to comment.