Commit c21572bb authored by Peter Eastman's avatar Peter Eastman
Browse files

Increased tolerances on test cases that were failing.

parent b86e12ce
......@@ -129,7 +129,7 @@ void testConstraints() {
if (i == 1)
initialEnergy = energy;
else if (i > 1)
ASSERT_EQUAL_TOL(initialEnergy, energy, 0.02);
ASSERT_EQUAL_TOL(initialEnergy, energy, 0.05);
integrator.step(1);
}
}
......
......@@ -125,7 +125,7 @@ void testConstraints() {
if (i == 1)
initialEnergy = energy;
else if (i > 1)
ASSERT_EQUAL_TOL(initialEnergy, energy, 0.01);
ASSERT_EQUAL_TOL(initialEnergy, energy, 0.05);
integrator.step(1);
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment