We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c71fc8 commit d64b621Copy full SHA for d64b621
toolchain/mfc/test/case.py
@@ -213,9 +213,12 @@ def __str__(self) -> str:
213
return f"tests/[bold magenta]{self.get_uuid()}[/bold magenta]: {self.trace}"
214
215
def compute_tolerance(self) -> float:
216
- if any(self.params.get(key, 'F') == 'T' for key in ['hypoelasticity', 'ib']):
+ if self.params.get("hypoelasticity", 'F') == 'T':
217
return 1e-7
218
219
+ if self.params.get('ib', 'F') == 'T':
220
+ return 1e-8
221
+
222
if any(self.params.get(key, 'F') == 'T' for key in ['relax', 'qbmm', 'bubbles']):
223
return 1e-10
224
0 commit comments