Skip to content

Commit

Permalink
neglect lower values in test #148
Browse files Browse the repository at this point in the history
  • Loading branch information
mohd-afeef-badri committed Aug 4, 2024
1 parent f786330 commit a200bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elasticity/FemModule.cc
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ _checkResultFile()
if (filename.empty())
return;
const double epsilon = 1.0e-4;
const double min_value_to_test = 1.0e-18;
const double min_value_to_test = 1.0e-16;
Arcane::FemUtils::checkNodeResultFile(traceMng(), filename, m_U, epsilon, min_value_to_test);
}

Expand Down

0 comments on commit a200bea

Please sign in to comment.