Skip to content

Commit

Permalink
less severe accuracy requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
EiffL committed Jul 18, 2020
1 parent bdb78f3 commit 850fae8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_angular_cl.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_lensing_cl():
cl_ccl = ccl.angular_cl(cosmo_ccl, tracer_ccl, tracer_ccl, ell)
cl_jax = angular_cl(cosmo_jax, ell, [tracer_jax])

assert_allclose(cl_ccl, cl_jax[0], rtol=0.5e-2)
assert_allclose(cl_ccl, cl_jax[0], rtol=1.0e-2)


def test_lensing_cl_IA():
Expand Down Expand Up @@ -142,4 +142,4 @@ def test_clustering_cl():
cl_ccl = ccl.angular_cl(cosmo_ccl, tracer_ccl, tracer_ccl, ell)
cl_jax = angular_cl(cosmo_jax, ell, [tracer_jax])

assert_allclose(cl_ccl, cl_jax[0], rtol=0.5e-2)
assert_allclose(cl_ccl, cl_jax[0], rtol=1e-2)

0 comments on commit 850fae8

Please sign in to comment.