Skip to content

Commit fc2883a

Browse files
committed
remove tols
1 parent 1c99f12 commit fc2883a

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

toolchain/mfc/test/case.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,11 @@ def compute_tolerance(self) -> float:
221221

222222
if "Example" in self.trace.split(" -> "):
223223
return 1e-3
224-
225-
if self.params.get('ib', 'T') == 'T':
226-
return 1e-8
227-
224+
228225
if self.params.get("hypoelasticity", 'F') == 'T':
229226
return 1e-7
230227

231-
if any(self.params.get(key, 'F') == 'T' for key in ['relax', 'qbmm', 'bubbles']) or self.params.get("low_Mach", 'F') == 1 or self.params.get("low_Mach", 'F') == 2:
228+
if any(self.params.get(key, 'F') == 'T' for key in ['relax', 'ib', 'qbmm', 'bubbles']) or self.params.get("low_Mach", 'F') == 1 or self.params.get("low_Mach", 'F') == 2:
232229
return 1e-10
233230

234231
if self.params.get("acoustic_source", 'F') == 'T':

0 commit comments

Comments
 (0)