| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
The problem was that in 32bit Ubuntu 12.04, one gets the following: > /home/njs/numpy/.tox/py27/local/lib/python2.7/site-packages/numpy/random/tests/test_random.py(363)test_pareto() -> np.testing.assert_array_almost_equal(actual, desired, decimal=15) (Pdb) actual[1, 0] 52828779.702948704 (Pdb) desired[1, 0] 52828779.702948518 and the test was comparing the numbers to 1e-14, which obviously failed. Fixes numpy#424.
|
No-one seems to object, so merging... |
Sorry, something went wrong.
FIX: loosen numerical tolerance in test_pareto()
|
This is +1. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
[This is a tighter version of #425 and I think supersedes it]
The problem was that in 32bit Ubuntu 12.04, one gets the following:
and the test was comparing the numbers to 1e-14, which obviously
failed.
Fixes #424.