• Home
  • Raw
  • Download

Lines Matching refs:complement

138    return cdf(complement(d, x));  in ccdf_tester()
246 BOOST_CHECK_EX(quantile(complement(du, ccp)) >= x); in do_test_hypergeometric_quantile()
258 BOOST_CHECK_EX(quantile(complement(dl, ccp)) <= x); in do_test_hypergeometric_quantile()
271 BOOST_CHECK_EX(quantile(complement(dn, ccp)) == x); in do_test_hypergeometric_quantile()
293 BOOST_CHECK_EX(quantile(complement(dou, ccp)) >= x); in do_test_hypergeometric_quantile()
297 BOOST_CHECK_EX(quantile(complement(dou, ccp)) <= x); in do_test_hypergeometric_quantile()
320 BOOST_CHECK_EX(quantile(complement(di, ccp)) <= x); in do_test_hypergeometric_quantile()
324 BOOST_CHECK_EX(quantile(complement(di, ccp)) >= x); in do_test_hypergeometric_quantile()
355 BOOST_CHECK_CLOSE(cdf(complement(d, x)), ccp, tol); in test_spot()
359 BOOST_CHECK_CLOSE(cdf(complement(d, static_cast<RealType>(x))), ccp, tol); in test_spot()
373 BOOST_CHECK_EX(quantile(complement(du, ccp)) >= x); in test_spot()
378 BOOST_CHECK_EX(quantile(complement(dl, ccp)) <= x); in test_spot()
384 BOOST_CHECK_EX(quantile(complement(dn, ccp)) == x); in test_spot()
391 BOOST_MATH_CHECK_THROW(cdf(complement(d, extent.second + 1)), std::domain_error); in test_spot()
396 BOOST_MATH_CHECK_THROW(cdf(complement(d, extent.first - 1)), std::domain_error); in test_spot()
399 BOOST_MATH_CHECK_THROW(quantile(complement(d, 1.1f)), std::domain_error); in test_spot()
401 BOOST_MATH_CHECK_THROW(quantile(complement(d, -0.001f)), std::domain_error); in test_spot()
407 BOOST_CHECK_EQUAL(quantile(complement(d, 0)), extent.second); in test_spot()
408 BOOST_CHECK_EQUAL(quantile(complement(d, 1)), extent.first); in test_spot()
410 BOOST_CHECK_EQUAL(cdf(complement(d, extent.second)), 0); in test_spot()