Apply re-formatting to C++ in src/ tree.
[alexxy/gromacs.git] / src / gromacs / mdlib / tests / leapfrogtestrunners.cpp
index a9739e602830dd0e3159390fd445f0037cefdddc..8bc5f7f807f29e27b7db59ef6187228dd3d7a501 100644 (file)
@@ -71,12 +71,19 @@ void LeapFrogHostTestRunner::integrate(LeapFrogTestData* testData, int numSteps)
 
     for (int step = 0; step < numSteps; step++)
     {
-        testData->update_->update_coords(
-                testData->inputRecord_, step, &testData->mdAtoms_, &testData->state_, testData->f_,
-                testData->forceCalculationData_, &testData->kineticEnergyData_,
-                testData->velocityScalingMatrix_, etrtNONE, nullptr, false);
-        testData->update_->finish_update(testData->inputRecord_, &testData->mdAtoms_,
-                                         &testData->state_, nullptr, false);
+        testData->update_->update_coords(testData->inputRecord_,
+                                         step,
+                                         &testData->mdAtoms_,
+                                         &testData->state_,
+                                         testData->f_,
+                                         testData->forceCalculationData_,
+                                         &testData->kineticEnergyData_,
+                                         testData->velocityScalingMatrix_,
+                                         etrtNONE,
+                                         nullptr,
+                                         false);
+        testData->update_->finish_update(
+                testData->inputRecord_, &testData->mdAtoms_, &testData->state_, nullptr, false);
     }
     const auto xp = makeArrayRef(*testData->update_->xp()).subArray(0, testData->numAtoms_);
     for (int i = 0; i < testData->numAtoms_; i++)