We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94377de commit a886a21Copy full SHA for a886a21
test/integration/special_functions.jl
@@ -14,7 +14,8 @@ end
14
@testset "loggamma" begin
15
@test SpecialFunctions.loggamma(0.5) ≈
16
@jit(SpecialFunctions.loggamma(ConcreteRNumber(0.5)))
17
- @test SpecialFunctions.loggamma(2) ≈ @jit(SpecialFunctions.loggamma(ConcreteRNumber(2)))
+ @test abs(SpecialFunctions.loggamma(2)) < 1e-10
18
+ @test abs(@jit(SpecialFunctions.loggamma(ConcreteRNumber(2)))) < 1e-10
19
end
20
21
@testset "digamma" begin
0 commit comments