From 992e1720d22cae81476e1ba0972366dd791e87d3 Mon Sep 17 00:00:00 2001 From: landinjm Date: Wed, 11 Dec 2024 13:19:04 -0500 Subject: [PATCH] Loosen tolerance --- automatic_tests/run_automatic_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automatic_tests/run_automatic_tests.py b/automatic_tests/run_automatic_tests.py index 7620728f..c1973a1a 100644 --- a/automatic_tests/run_automatic_tests.py +++ b/automatic_tests/run_automatic_tests.py @@ -149,7 +149,7 @@ def run_regression_test(application, new_gold_standard, test_dir): rel_diff = abs( (float(gold_last_energy) - float(last_energy)) / float(gold_last_energy) ) - test_passed = rel_diff < 1.0e-5 + test_passed = rel_diff < 1.0e-4 # Determine test result test_result = (