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 ed9f733 commit c140788Copy full SHA for c140788
test/specialfunctionstests.jl
@@ -5,4 +5,9 @@ using Compat.Test
5
@test pochhammer(2,3) == 24
6
@test pochhammer(0.5,3) == 0.5*1.5*2.5
7
@test pochhammer(0.5,0.5) == 1/sqrtpi
8
+ @test pochhammer(0,1) == 0
9
+ @test pochhammer(-1,2) == 0
10
+ @test pochhammer(-5,3) == -60
11
+ @test pochhammer(-1,-0.5) == 0
12
+ @test pochhammer(-0.5,-0.5) == Inf
13
end
0 commit comments