Skip to content

Commit

Permalink
Expect lower convergence for monotonic correction
Browse files Browse the repository at this point in the history
  • Loading branch information
dschwoerer committed Jan 22, 2025
1 parent db77ef3 commit 147a874
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/MMS/spatial/fci/runtest
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ for nslice in nslices:
stdout.write(", {:f} (small spacing)".format(order))

# Should be close to the expected order
if order > method_orders[nslice]["order"] * 0.95:
if order > method_orders[nslice]["order"] * (
0.6 if "monot" in method else 0.95
):
print("............ PASS\n")
else:
print("............ FAIL\n")
Expand Down

0 comments on commit 147a874

Please sign in to comment.