Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test demo-ing RT#107326 problem #24

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion GSL/t/cdf.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Test::More;

BEGIN {
plan tests => 90;
plan tests => 93;
}

use PDL::LiteF;
Expand Down Expand Up @@ -118,3 +118,8 @@ sub tapprox {
ok(all(approx(gsl_cdf_hypergeometric_P ($z, 25, 5, 11), pdl([ 0.00324196875921016, 0.0472401162056337, 0.24523177971454, 0.61921603300914, 0.918403435644814 ]))));
ok(all(approx(gsl_cdf_hypergeometric_Q ($z, 25, 5, 11), pdl([ 0.99675803124079, 0.952759883794366, 0.75476822028546, 0.38078396699086, 0.0815965643551856 ]))));
}

# ensure gsl_cdf_hypergeometric_P fails with error with negative first value
ok all approx(gsl_cdf_hypergeometric_P(0, 2, 8, 6), 0.133333333);
ok all approx(gsl_cdf_hypergeometric_P(18, 2, 8, 6), 1);
ok all approx(gsl_cdf_hypergeometric_P(-1, 2, 8, 6), 0);