From 4a650aadc61d495c7c960433fa6cdb43f51aab6c Mon Sep 17 00:00:00 2001 From: ChrisZYJ Date: Mon, 26 Aug 2024 22:59:13 -0700 Subject: [PATCH] tol 3e-12 --- toolchain/mfc/test/case.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain/mfc/test/case.py b/toolchain/mfc/test/case.py index bf1869491f..f57bc6e3f7 100644 --- a/toolchain/mfc/test/case.py +++ b/toolchain/mfc/test/case.py @@ -225,7 +225,7 @@ def compute_tolerance(self) -> float: if self.params.get("acoustic_source", 'F') == 'T': if "acoustic(1)%pulse" in self.params and self.params["acoustic(1)%pulse"] == 3: # Square wave return 1e-5 - return 5e-12 + return 3e-12 return 1e-12