Skip to content

Commit

Permalink
Bump complex cosh tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Mar 4, 2015
1 parent 6677c6d commit 3615e61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_cumath.py
Expand Up @@ -90,9 +90,9 @@ def test():
test_atan = make_unary_function_test("atan", -10, 10, 2e-7)

test_sinh = make_unary_function_test("sinh", -3, 3, 2e-6)
test_sinh_c = make_unary_function_test("sinh", -3, 3, 2e-6, complex=True)
test_sinh_c = make_unary_function_test("sinh", -3, 3, 3e-6, complex=True)
test_cosh = make_unary_function_test("cosh", -3, 3, 2e-6)
test_cosh_c = make_unary_function_test("cosh", -3, 3, 2e-6, complex=True)
test_cosh_c = make_unary_function_test("cosh", -3, 3, 3e-6, complex=True)
test_tanh = make_unary_function_test("tanh", -3, 3, 2e-6)
test_tanh_c = make_unary_function_test("tanh",
-math.pi/2 + 0.1, math.pi/2 - 0.1, 3e-5, complex=True)
Expand Down

0 comments on commit 3615e61

Please sign in to comment.