Skip to content

Commit 86bf095

Browse files
committed
adjusted error bounds, because they come out slightly different in the CI versus locally
1 parent 4b4a2e4 commit 86bf095

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pynumdiff/tests/test_diff_methods.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
# big ol' table by the method, then the test function, then the pair of quantities we're comparing.
3535
error_bounds = {
3636
lineardiff: [[(1e-25, 1e-25)]*4]*len(test_funcs_and_derivs),
37-
polydiff: [[(1e-15, 1e-15), (1e-12, 1e-13), (1, 0.1), (100, 100)],
38-
[(1e-14, 1e-14), (1e-12, 1e-13), (1, 0.1), (100, 100)],
37+
polydiff: [[(1e-14, 1e-15), (1e-12, 1e-13), (1, 0.1), (100, 100)],
38+
[(1e-13, 1e-14), (1e-12, 1e-13), (1, 0.1), (100, 100)],
3939
[(1e-13, 1e-14), (1e-11, 1e-12), (1, 0.1), (100, 100)],
4040
[(1e-13, 1e-14), (1e-12, 1e-12), (1, 0.1), (100, 100)],
4141
[(1e-6, 1e-7), (0.001, 0.0001), (1, 0.1), (100, 100)]],

0 commit comments

Comments
 (0)