|
85 | 85 | @test test_atol(rand_bigf, rand_vals, atanh, 1.0e-31) |
86 | 86 | @test test_rtol(rand_bigf, rand_vals, atanh, 1.0e-29) |
87 | 87 |
|
| 88 | + @test test_atol(rand_bigf, rand_vals, x -> x^x, 1.0e-31) |
| 89 | + @test test_rtol(rand_bigf, rand_vals, x -> x^x, 1.0e-31) |
| 90 | + |
| 91 | + @test test_atol(rand_bigf, rand_vals, x -> 2^x, 1.0e-31) |
| 92 | + @test test_rtol(rand_bigf, rand_vals, x -> 2^x, 1.0e-31) |
| 93 | + |
88 | 94 |
|
89 | 95 | @test test_atol(rand1_bigf, rand1_vals, exp, 1.0e-30) |
90 | 96 | @test test_rtol(rand1_bigf, rand1_vals, exp, 1.0e-31) |
|
115 | 121 |
|
116 | 122 | @test test_atol(rand1_bigf, rand1_vals, asinh, 1.0e-31) |
117 | 123 | @test test_rtol(rand1_bigf, rand1_vals, asinh, 1.0e-31) |
| 124 | + |
| 125 | + @test test_atol(rand1_bigf, rand1_vals, x -> x^x, 1.0e-30) |
| 126 | + @test test_rtol(rand1_bigf, rand1_vals, x -> x^x, 1.0e-31) |
| 127 | + |
| 128 | + @test test_atol(rand1_bigf, rand1_vals, x -> 2^x, 1.0e-30) |
| 129 | + @test test_rtol(rand1_bigf, rand1_vals, x -> 2^x, 1.0e-31) |
118 | 130 | end |
0 commit comments