Skip to content

Commit b98e754

Browse files
Fixed typo
1 parent d932223 commit b98e754

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/gravity/step.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ inline void Step(std::vector<Particle>& p, real dt) {
1616
real theta = 0.5;
1717

1818
#pragma omp parallel for schedule(static)
19-
for (int i = 0; I < p.size(); i++) {
19+
for (int i = 0; i < p.size(); i++) {
2020
bhForce(&root, p[I], theta, dt);
2121
}
2222

0 commit comments

Comments
 (0)