Häääää

This commit is contained in:
Jacob Holder 2021-10-27 22:16:23 +02:00
parent 7abad4075c
commit 7f947ff1d1
Signed by: jacob
GPG Key ID: 2194FC747048A7FD

View File

@ -90,8 +90,8 @@ void run_no_force(size_t integrator_index, size_t force_index,
{
std::vector<std::pair<Compute::Type, size_t>> 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);