Move println out of the loop

This commit is contained in:
Timothy Warren 2020-01-14 09:33:17 -05:00
parent 5d27ffc192
commit 57d228685e
1 changed files with 2 additions and 2 deletions

View File

@ -127,9 +127,9 @@ fn output_energy(bodies: &mut [Body; BODIES_COUNT]) {
+ sqr(body.position[2] - body2.position[2]),
);
}
println!("{:.9}", energy);
}
println!("{:.9}", energy);
}
/// Steps the simulation foward by one time step