Larger rounding errors on CircleCI?
Showing 2 of 2 files from the diff.
nodepy/runge_kutta_method.py
changed.
nodepy/unit_tests.py
changed.
@@ -17,7 +17,7 @@
Loading
17 | 17 | * Find its radius of absolute monotonicity:: |
|
18 | 18 | ||
19 | 19 | >>> ssp104.absolute_monotonicity_radius() # doctest:+ELLIPSIS |
|
20 | - | 5.9999999... |
|
20 | + | 5.999999... |
|
21 | 21 | ||
22 | 22 | * Load a dictionary with many methods:: |
|
23 | 23 |
@@ -2448,7 +2448,7 @@
Loading
2448 | 2448 | >>> from nodepy import rk, rt |
|
2449 | 2449 | >>> tree = rt.list_trees(5)[3] |
|
2450 | 2450 | >>> rk.elementary_weight_str_jump(tree) |
|
2451 | - | "sum(b[i]*sum(A[i,j]*c[j]*sum(A[j,k]*c[k] for k in 1:j-1) for j in 1:i-1) for i in 1:s)" |
|
2451 | + | 'sum(b[i]*sum(A[i,j]*c[j]*sum(A[j,k]*c[k] for k in 1:j-1) for j in 1:i-1) for i in 1:s)' |
|
2452 | 2452 | """ |
|
2453 | 2453 | nleaves,subtrees = tree._parse_subtrees() |
|
2454 | 2454 |
@@ -72,7 +72,7 @@
Loading
72 | 72 | ||
73 | 73 | def runTest(self): |
|
74 | 74 | for method, SSPCoefficient in self.knownValues: |
|
75 | - | self.assertAlmostEqual(self.RKs[method].absolute_monotonicity_radius(),SSPCoefficient,9) |
|
75 | + | self.assertAlmostEqual(self.RKs[method].absolute_monotonicity_radius(),SSPCoefficient,6) |
|
76 | 76 | ||
77 | 77 | class linAmradTest(RungeKuttaTestCase): |
|
78 | 78 | knownValues = ( ('FE',1), |
Files | Coverage |
---|---|
nodepy | 81.41% |
Project Totals (21 files) | 81.41% |
428.1
TRAVIS_PYTHON_VERSION=3.5 TRAVIS_OS_NAME=linux
427.1
TRAVIS_PYTHON_VERSION=3.5 TRAVIS_OS_NAME=linux
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.