From c182ed6f2f7f7b69bb159d824e5d6e9a2ff6c104 Mon Sep 17 00:00:00 2001 From: Satoshi Ikari Date: Sat, 20 Jul 2024 10:52:26 +0900 Subject: [PATCH] Fix format --- src/math_physics/numerical_integration/test_runge_kutta.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/math_physics/numerical_integration/test_runge_kutta.cpp b/src/math_physics/numerical_integration/test_runge_kutta.cpp index babc93c5f..fd2438ec6 100644 --- a/src/math_physics/numerical_integration/test_runge_kutta.cpp +++ b/src/math_physics/numerical_integration/test_runge_kutta.cpp @@ -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]); @@ -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]);