• Home
  • Raw
  • Download

Lines Matching refs:complement

192     BOOST_CHECK_CLOSE_FRACTION(cdf(complement(anarcsine, x)), Q, tol);  in test_spot()
211 BOOST_CHECK_CLOSE_FRACTION(quantile(complement(anarcsine, Q)), x, tol * 10); in test_spot()
218 … BOOST_CHECK(quantile(complement(anarcsine, Q)) < boost::math::tools::epsilon<RealType>() * 10); in test_spot()
242 using ::boost::math::complement; in test_spots()
306 …BOOST_CHECK_CLOSE_FRACTION(cdf(complement(arcsine_01, 0.000001)), static_cast<RealType>(1 - 0.0006… in test_spots()
307 …BOOST_CHECK_CLOSE_FRACTION(cdf(complement(arcsine_01, 0.000001)), static_cast<RealType>(0.99936338… in test_spots()
308 …BOOST_CHECK_CLOSE_FRACTION(cdf(complement(arcsine_01, 0.05)), static_cast<RealType>(0.856433706871… in test_spots()
309 …BOOST_CHECK_CLOSE_FRACTION(cdf(complement(arcsine_01, 0.5)), static_cast<RealType>(0.5L), toleranc… in test_spots()
311 …BOOST_CHECK_CLOSE_FRACTION(cdf(complement(arcsine_01, 0.95)), static_cast<RealType>(0.143566293128… in test_spots()
312 …BOOST_CHECK_CLOSE_FRACTION(cdf(complement(arcsine_01, 0.999999)), static_cast<RealType>(1 - 0.9993… in test_spots()
326 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(arcsine_01, static_cast<RealType>(0.856433706871293… in test_spots()
328 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(arcsine_01, static_cast<RealType>(0.25L))), static_… in test_spots()
329 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(arcsine_01, static_cast<RealType>(0.5L))), 0.5, 2 *… in test_spots()
330 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(arcsine_01, static_cast<RealType>(0.75L))), static_… in test_spots()
414 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(as_m2m1, static_cast<RealType>(0.143566293128706270… in test_spots()
416 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(as_m2m1, static_cast<RealType>(0.856433706871293729… in test_spots()
457 BOOST_MATH_CHECK_THROW(cdf(complement(dist, -1)), std::domain_error); in test_spots()
459 BOOST_MATH_CHECK_THROW(quantile(complement(dist, -1)), std::domain_error); in test_spots()
461 BOOST_MATH_CHECK_THROW(quantile(complement(dist, -1)), std::domain_error); in test_spots()
488 BOOST_MATH_CHECK_THROW(cdf(complement(w, +nan)), std::domain_error); // x = + nan in test_spots()
490 BOOST_MATH_CHECK_THROW(quantile(complement(w, +nan)), std::domain_error); // p = + nan in test_spots()
515 BOOST_MATH_CHECK_THROW(cdf(complement(w, +inf)), std::domain_error); // x = + inf in test_spots()
517 BOOST_MATH_CHECK_THROW(quantile(complement(w, +inf)), std::domain_error); // p = + inf in test_spots()