diff --git a/C++/src/main.cpp b/C++/src/main.cpp index 1805a09..837d22c 100644 --- a/C++/src/main.cpp +++ b/C++/src/main.cpp @@ -90,8 +90,8 @@ void run_no_force(size_t integrator_index, size_t force_index, { std::vector> repeating_computes; for (int i = 1; i < n_computes; ++i) { - repeating_computes.emplace_back(Compute::Type::x, i * 1); - repeating_computes.emplace_back(Compute::Type::x_squared, i * 1); + repeating_computes.emplace_back(Compute::Type::x, i * delta_compute); + repeating_computes.emplace_back(Compute::Type::x_squared, i * delta_compute); } Calculation calc_repeat(integrator, repeating_computes, stepSize, SEED, force, zero_Torque, 1.0);