Skip to content
Snippets Groups Projects
Commit e276434b authored by Studer Gabriel's avatar Studer Gabriel
Browse files

make mol.mm.simulation unit test more permissive

The test_simulation_energy_calculations unit test compares the potential
energy of crambin after 200 steps steepest descent with a reference value.
Depending on OpenMM version / hardware, we might get slight differences
that propagate through the minimization.
parent 70a3fef8
No related branches found
No related tags found
No related merge requests found
......@@ -173,9 +173,13 @@ BOOST_AUTO_TEST_CASE(test_simulation_energy_calculations){
//Gromacs writes down the positions using nm instead of A, but
//also has a precision of 3 digits.
BOOST_CHECK_CLOSE(sim.GetPotentialEnergy(), -2381.24, Real(1e-3));
// Threshold is relatively permissive (1e-1->0.1% difference) depending on
// OpenMM version / Hardware you might get slightly different results.
// Error propagates when performing 200 steps steepest descent (minimizes from
// roughly 1981 down to -2381).
BOOST_CHECK_CLOSE(sim.GetPotentialEnergy(), -2381.24, Real(1e-1));
}
BOOST_AUTO_TEST_SUITE_END();
\ No newline at end of file
BOOST_AUTO_TEST_SUITE_END();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment