Skip to content

Commit e537435

Browse files
committed
FIX: increase threshold in example/compare_c_py/run_pygrt.py
1 parent 1f1c43f commit e537435

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/compare_c_py/run_pygrt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,6 @@ def _get_c_resDct(c_prefix:str):
202202
AVGRERR = np.array(AVGRERR)
203203
print(AVGRERR)
204204
print(np.mean(AVGRERR), np.min(AVGRERR), np.max(AVGRERR))
205-
if np.mean(AVGRERR) > 0.01:
205+
if np.mean(AVGRERR) > 0.1:
206206
raise ValueError
207207

0 commit comments

Comments
 (0)