/third_party/boost/libs/math/example/ |
D | binomial_quiz_example.cpp | 316 cout << "Quartiles " << quantile(quiz, 0.25) << " to " in main() 317 << quantile(complement(quiz, 0.25)) << endl; // Quartiles in main() 318 cout << "1 standard deviation " << quantile(quiz, 0.33) << " to " in main() 319 << quantile(quiz, 0.67) << endl; // 1 sd in main() 320 cout << "Deciles " << quantile(quiz, 0.1) << " to " in main() 321 << quantile(complement(quiz, 0.1))<< endl; // Deciles in main() 322 cout << "5 to 95% " << quantile(quiz, 0.05) << " to " in main() 323 << quantile(complement(quiz, 0.05))<< endl; // 5 to 95% in main() 324 cout << "2.5 to 97.5% " << quantile(quiz, 0.025) << " to " in main() 325 << quantile(complement(quiz, 0.025)) << endl; // 2.5 to 97.5% in main() [all …]
|
D | policy_eg_10.cpp | 108 << quantile(binom_round_outwards(50, 0.5), 0.05) in main() 110 << quantile(binom_round_outwards(50, 0.5), 0.95) in main() 117 << quantile(binom_round_inwards(50, 0.5), 0.05) in main() 119 << quantile(binom_round_inwards(50, 0.5), 0.95) in main() 126 << quantile(binom_round_down(50, 0.5), 0.05) in main() 128 << quantile(binom_round_down(50, 0.5), 0.95) in main() 135 << quantile(binom_round_up(50, 0.5), 0.05) in main() 137 << quantile(binom_round_up(50, 0.5), 0.95) in main() 144 << quantile(binom_round_nearest(50, 0.5), 0.05) in main() 146 << quantile(binom_round_nearest(50, 0.5), 0.95) in main() [all …]
|
D | chi_square_std_dev_test.cpp | 38 using boost::math::quantile; in confidence_limits_on_std_deviation() 70 double lower_limit = sqrt((N - 1) * Sd * Sd / quantile(complement(dist, alpha[i] / 2))); in confidence_limits_on_std_deviation() 71 double upper_limit = sqrt((N - 1) * Sd * Sd / quantile(dist, alpha[i] / 2)); in confidence_limits_on_std_deviation() 92 using boost::math::quantile; in confidence_limits_on_std_deviation_alpha() 120 double lower_limit = sqrt((N - 1) * Sd * Sd / quantile(complement(dist, alpha / 2))); in confidence_limits_on_std_deviation_alpha() 121 double upper_limit = sqrt((N - 1) * Sd * Sd / quantile(dist, alpha / 2)); in confidence_limits_on_std_deviation_alpha() 145 using boost::math::quantile; in chi_squared_test() 171 double ucv = quantile(complement(dist, alpha)); in chi_squared_test() 172 double ucv2 = quantile(complement(dist, alpha / 2)); in chi_squared_test() 173 double lcv = quantile(dist, alpha); in chi_squared_test() [all …]
|
D | inverse_chi_squared_bayes_eg.cpp | 31 using ::boost::math::quantile; in main() 118 cout << " 2.5% quantile: " << quantile(prior, 0.025) << endl; in main() 119 cout << " 50% quantile: " << quantile(prior, 0.5) << endl; in main() 120 cout << " 97.5% quantile: " << quantile(prior, 0.975) << endl << endl; in main() 261 cout << " 2.5% quantile: " << boost::math::quantile(posterior, 0.025) << endl; in main() 262 cout << " 50% quantile: " << boost::math::quantile(posterior, 0.5) << endl; in main() 263 cout << " 97.5% quantile: " << boost::math::quantile(posterior, 0.975) << endl << endl; in main()
|
D | error_policies_example.cpp | 72 …cout << "quantile(my_normal(), 0.05); = " << quantile(my_normal(), 0.05) << endl; // 0.05 is argum… in main() 73 …cout << "quantile(my_normal(), 0.); = " << quantile(my_normal(), 0.) << endl; // argument zero, so… in main() 74 …cout << "quantile(my_normal(), 0.); = " << quantile(my_normal(), 0.F) << endl; // argument zero, s… in main() 76 …cout << "quantile(my_students_t(), 0.); = " << quantile(my_students_t(-1), 0.F) << endl; // 'bad' … in main() 83 …cout << "quantile(my_normal2(), 0.); = " << quantile(my_normal2, 0.01) << endl; // argument 0.01, … in main() 84 …cout << "quantile(my_normal2(), 0.); = " << quantile(my_normal2, 0.) << endl; // argument zero, so… in main()
|
D | normal_misc_examples.cpp | 96 cout << "95% of area has a z below " << quantile(s, 0.95) << endl; in main() 101 cout << "95% of area has a z between " << quantile(s, 0.975) in main() 102 << " and " << -quantile(s, 0.975) << endl; in main() 129 …cout << setw(15) << alpha[i] << setw(15) << alpha[i] /2 << setw(10) << quantile(complement(s, alp… in main() 254 double stock_95 = quantile(sacks, 0.95); in main() 258 double stock_80 = quantile(sacks, 0.80); in main() 297 double offset = mean - low_limit - quantile(packs, under_fraction); in main() 317 cout << "Quantile of " << p << " = " << quantile(packs, p) in main() 329 cout << "Quantile of " << p << " = " << quantile(pack05, p) in main() 345 cout << "Quantile of " << p << " = " << quantile(pack06, p) in main() [all …]
|
D | negative_binomial_example1.cpp | 60 using ::boost::math::quantile; 277 << ", then the finishing house is " << quantile(nb, p) + sales_quota << endl; in main() 279 cout<< " quantile(nb, p) = " << quantile(nb, p) << endl; in main() 290 << ", then the finishing house is " << quantile(nb, 1) + sales_quota << endl; in main() 298 << ", then the finishing house is " << quantile(nb, 0.) + sales_quota << endl; in main() 301 << ", then the finishing house is " << quantile(nb, 0.5) + sales_quota << endl; in main() 304 << ", then the finishing house is " << quantile(nb, 1 - 0.00151) + sales_quota << endl; in main() 334 << ", then finishing house is " << quantile(nb, ps[i]) + sales_quota in main()
|
/third_party/boost/libs/math/test/ |
D | test_triangular.cpp | 60 ::boost::math::quantile( in check_triangular() 66 ::boost::math::quantile( in check_triangular() 346 …BOOST_CHECK_CLOSE_FRACTION(quantile(tri0q1, static_cast<RealType>(0.0016L)), static_cast<RealType>… in test_spots() 347 …BOOST_CHECK_CLOSE_FRACTION(quantile(tri0q1, static_cast<RealType>(0.666666666666666666666666666666… in test_spots() 348 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(tri0q1, static_cast<RealType>(0.3333333333333333333… in test_spots() 349 …BOOST_CHECK_CLOSE_FRACTION(quantile(tri0q1, static_cast<RealType>(0.999466666666666666666666666666… in test_spots() 355 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(tri0q1, static_cast<RealType>(1 - 0.999466666666666… in test_spots() 356 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(tri0h1, static_cast<RealType>(1))), static_cast<Rea… in test_spots() 357 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(tri0h1, static_cast<RealType>(0.5))), static_cast<R… in test_spots() 358 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(tri0h1, static_cast<RealType>(1 - 0.02L))), static_… in test_spots() [all …]
|
D | test_cauchy.cpp | 197 ::boost::math::quantile( in test_spots() 203 ::boost::math::quantile( in test_spots() 209 ::boost::math::quantile( in test_spots() 215 ::boost::math::quantile( in test_spots() 221 ::boost::math::quantile( in test_spots() 227 ::boost::math::quantile( in test_spots() 233 ::boost::math::quantile( in test_spots() 239 ::boost::math::quantile( in test_spots() 245 ::boost::math::quantile( in test_spots() 251 ::boost::math::quantile( in test_spots() [all …]
|
D | test_poisson.cpp | 135 quantile(poisson_distribution<RealType>(static_cast<RealType>(0)), // mean zero. in test_spots() 140 quantile(poisson_distribution<RealType>(static_cast<RealType>(-1)), in test_spots() 145 quantile(poisson_distribution<RealType>(static_cast<RealType>(1)), in test_spots() 150 quantile(poisson_distribution<RealType>(static_cast<RealType>(1)), in test_spots() 155 quantile(complement(poisson_distribution<RealType>(static_cast<RealType>(1)), in test_spots() 160 quantile(poisson_distribution<RealType>(static_cast<RealType>(1)), in test_spots() 165 quantile(complement(poisson_distribution<RealType>(static_cast<RealType>(1)), in test_spots() 184 quantile(dist4, static_cast<RealType>(0.5)), // 39.332839138842637 in test_spots() 356 boost::math::quantile( in test_spots() 368 BOOST_CHECK_CLOSE(boost::math::quantile( in test_spots() [all …]
|
D | test_hypergeometric_dist.cpp | 242 BOOST_CHECK_EX(quantile(du, cp) >= x); in do_test_hypergeometric_quantile() 246 BOOST_CHECK_EX(quantile(complement(du, ccp)) >= x); in do_test_hypergeometric_quantile() 254 BOOST_CHECK_EX(quantile(dl, cp) <= x); in do_test_hypergeometric_quantile() 258 BOOST_CHECK_EX(quantile(complement(dl, ccp)) <= x); in do_test_hypergeometric_quantile() 267 BOOST_CHECK_EX(quantile(dn, cp) == x); in do_test_hypergeometric_quantile() 271 BOOST_CHECK_EX(quantile(complement(dn, ccp)) == x); in do_test_hypergeometric_quantile() 282 BOOST_CHECK_EX(quantile(dou, cp) <= x); in do_test_hypergeometric_quantile() 286 BOOST_CHECK_EX(quantile(dou, cp) >= 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() [all …]
|
D | test_arcsine.cpp | 196 quantile(anarcsine, P), x, tol); in test_spot() 206 BOOST_CHECK(quantile(anarcsine, P) < boost::math::tools::epsilon<RealType>() * 10); 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() 243 using ::boost::math::quantile; in test_spots() 317 …BOOST_CHECK_CLOSE_FRACTION(quantile(arcsine_01, static_cast<RealType>(0.25L)), static_cast<RealTyp… in test_spots() 318 …BOOST_CHECK_CLOSE_FRACTION(quantile(arcsine_01, static_cast<RealType>(0.5L)), 0.5, 2 * tolerance);… in test_spots() 319 …BOOST_CHECK_CLOSE_FRACTION(quantile(arcsine_01, static_cast<RealType>(0.75L)), static_cast<RealTyp… in test_spots() 322 …BOOST_CHECK_CLOSE_FRACTION(quantile(arcsine_01, static_cast<RealType>(0.14356629312870627075094188… in test_spots() 326 …BOOST_CHECK_CLOSE_FRACTION(quantile(complement(arcsine_01, static_cast<RealType>(0.856433706871293… in test_spots() [all …]
|
D | test_negative_binomial.cpp | 78 quantile(bn, P), k, tol); in test_spot() 88 BOOST_CHECK(quantile(bn, P) < boost::math::tools::epsilon<RealType>() * 10); in test_spot() 94 quantile(complement(bn, Q)), k, tol); in test_spot() 104 BOOST_CHECK(quantile(complement(bn, Q)) < boost::math::tools::epsilon<RealType>() * 10); in test_spot() 577 quantile( // zero P < cdf(0) so should be exactly zero. in test_spots() 583 quantile( // min P < cdf(0) so should be exactly zero. in test_spots() 589 quantile( // Small P < cdf(0) so should be near zero. in test_spots() 596 quantile( // Small P < cdf(0) so should be exactly zero. in test_spots() 619 quantile( // At P == 1 so k failures should be infinite. in test_spots() 626 quantile( // At 1 == P so should be infinite. in test_spots() [all …]
|
D | test_bernoulli.cpp | 138 quantile( in test_spots() 143 quantile( in test_spots() 148 quantile( in test_spots() 153 quantile( in test_spots() 191 quantile( in test_spots() 198 quantile( in test_spots() 205 quantile(complement( in test_spots() 212 quantile(complement( in test_spots() 228 BOOST_MATH_CHECK_THROW(quantile(dist, 2), std::domain_error); in test_spots() 229 BOOST_MATH_CHECK_THROW(quantile(complement(dist, -1)), std::domain_error); in test_spots() [all …]
|
D | test_students_t.cpp | 178 BOOST_MATH_CHECK_THROW(boost::math::quantile( in test_spots() 182 BOOST_MATH_CHECK_THROW(boost::math::quantile( in test_spots() 186 BOOST_CHECK_EQUAL(boost::math::quantile( in test_spots() 191 BOOST_CHECK_EQUAL(boost::math::quantile( in test_spots() 197 BOOST_CHECK_CLOSE(boost::math::quantile( in test_spots() 210 ::boost::math::quantile( in test_spots() 217 ::boost::math::quantile( in test_spots() 231 ::boost::math::quantile( in test_spots() 244 ::boost::math::quantile( in test_spots() 258 ::boost::math::quantile( in test_spots() [all …]
|
D | test_logistic_dist.cpp | 52 ::boost::math::quantile( in test_spot() 61 ::boost::math::quantile( in test_spot() 213 …BOOST_MATH_CHECK_THROW(quantile(logistic_distribution<RealType>(), static_cast<RealType>(1)), std:… in test_spots() 214 …BOOST_MATH_CHECK_THROW(quantile(logistic_distribution<RealType>(), static_cast<RealType>(0)), std:… in test_spots() 215 …BOOST_MATH_CHECK_THROW(quantile(complement(logistic_distribution<RealType>(), static_cast<RealType… in test_spots() 216 …BOOST_MATH_CHECK_THROW(quantile(complement(logistic_distribution<RealType>(), static_cast<RealType… in test_spots() 286 …BOOST_MATH_CHECK_THROW(quantile(dist, +std::numeric_limits<RealType>::quiet_NaN()), std::domain_er… in test_spots() 287 …BOOST_MATH_CHECK_THROW(quantile(complement(dist, +std::numeric_limits<RealType>::quiet_NaN())), st… in test_spots() 299 BOOST_MATH_CHECK_THROW(quantile(dist, static_cast<RealType>(1.1)), std::domain_error); in test_spots() 300 BOOST_MATH_CHECK_THROW(quantile(dist, static_cast<RealType>(-0.1)), std::domain_error); in test_spots() [all …]
|
D | test_nc_t.hpp | 163 quantile(dist, P), t, tol * 10); in test_spot() 165 quantile(complement(dist, Q)), t, tol * 10); in test_spot() 303 …BOOST_MATH_CHECK_THROW(quantile(boost::math::non_central_t_distribution<RealType>(1, 1), -1), std:… in test_spots() 304 …BOOST_MATH_CHECK_THROW(quantile(boost::math::non_central_t_distribution<RealType>(1, 1), 2), std::… in test_spots() 393 …BOOST_CHECK(0 == quantile(boost::math::non_central_t_distribution<value_type>(data[i][0], data[i][… in quantile_sanity_check() 397 …value_type p = quantile(boost::math::non_central_t_distribution<value_type>(data[i][0], data[i][1]… in quantile_sanity_check() 403 …BOOST_CHECK(0 == quantile(complement(boost::math::non_central_t_distribution<value_type>(data[i][0… in quantile_sanity_check() 407 …value_type p = quantile(complement(boost::math::non_central_t_distribution<value_type>(data[i][0],… in quantile_sanity_check() 561 BOOST_CHECK_CLOSE_FRACTION(quantile(infdf10, 0.5), static_cast<RealType>(10), tolerance); in test_big_df() 562 BOOST_CHECK_CLOSE_FRACTION(quantile(maxdf10, 0.5), static_cast<RealType>(10), tolerance); in test_big_df() [all …]
|
D | test_inverse_gaussian.cpp | 59 ::boost::math::quantile( // Check quantile in check_inverse_gaussian() 65 ::boost::math::quantile( // Check quantile complement in check_inverse_gaussian() 80 quantile(dist, p), x, tol); // quantile(cdf) = x in check_inverse_gaussian() 82 quantile(complement(dist, q)), x, tol); // quantile(complement(1 - cdf)) = x in check_inverse_gaussian() 115 quantile(complement(w11, static_cast<RealType>(0.5))), in test_spots() 116 quantile(w11, 1 - static_cast<RealType>(0.5)), in test_spots() 230 quantile(w11, 0.66810200122317065), static_cast<double>(1.), 1 * tolfeweps); // cdf in BOOST_AUTO_TEST_CASE() 232 quantile(w11, 0.0040761113207110162), static_cast<double>(0.1), 1 * tolfeweps); // cdf in BOOST_AUTO_TEST_CASE() 234 quantile(w11, 4.122313403318778e-23), 0.01, 1 * tolfeweps); // quantile in BOOST_AUTO_TEST_CASE() 236 quantile(w11, 2.4420044378793562e-213), 0.001, 0.03); // quantile in BOOST_AUTO_TEST_CASE() [all …]
|
D | test_geometric.cpp | 74 quantile(g, P), k, tol); in test_spot() 84 BOOST_CHECK(quantile(g, P) < boost::math::tools::epsilon<RealType>() * 10); in test_spot() 90 quantile(complement(g, Q)), k, tol); in test_spot() 100 BOOST_CHECK(quantile(complement(g, Q)) < boost::math::tools::epsilon<RealType>() * 10); in test_spot() 212 using boost::math::quantile; in test_spots() 580 quantile( // zero P < cdf(0) so should be exactly zero. in test_spots() 586 quantile( // min P < cdf(0) so should be exactly zero. in test_spots() 592 quantile( // Small P < cdf(0) so should be near zero. in test_spots() 599 quantile( // Small P < cdf(0) so should be exactly zero. in test_spots() 622 quantile( // At P == 1 so k failures should be infinite. in test_spots() [all …]
|
D | test_uniform.cpp | 53 ::boost::math::quantile( in check_uniform() 59 ::boost::math::quantile( in check_uniform() 178 quantile(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.9)), in test_spots() 182 quantile(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.1)), in test_spots() 186 quantile(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.5)), in test_spots() 190 quantile(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0)), in test_spots() 194 quantile(uniform_distribution<RealType>(0, 1), static_cast<RealType>(1)), in test_spots() 201 quantile(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.1))), in test_spots() 205 quantile(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.9))), in test_spots() 209 quantile(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.5))), in test_spots() [all …]
|
D | test_beta_dist.cpp | 75 quantile(abeta, P), x, tol); in test_spot() 85 BOOST_CHECK(quantile(abeta, P) < boost::math::tools::epsilon<RealType>() * 10); in test_spot() 90 BOOST_CHECK_CLOSE_FRACTION(quantile(complement(abeta, Q)), x, tol); in test_spot() 97 … BOOST_CHECK(quantile(complement(abeta, Q)) < boost::math::tools::epsilon<RealType>() * 10); in test_spot() 285 quantile(beta_distribution<RealType>(static_cast<RealType>(0.5), static_cast<RealType>(0.5)), in test_spots() 299 quantile(beta_distribution<RealType>(static_cast<RealType>(0.5), static_cast<RealType>(0.5)), in test_spots() 314 quantile(beta_distribution<RealType>(static_cast<RealType>(2), static_cast<RealType>(0.5)), in test_spots() 328 quantile(beta_distribution<RealType>(static_cast<RealType>(1), static_cast<RealType>(1)), in test_spots() 342 quantile(beta_distribution<RealType>(static_cast<RealType>(2), static_cast<RealType>(2)), in test_spots() 474 BOOST_MATH_CHECK_THROW(quantile(dist, -1), std::domain_error); in test_spots() [all …]
|
/third_party/boost/libs/accumulators/test/ |
D | tail_quantile.cpp | 57 BOOST_CHECK_CLOSE( quantile(acc0, quantile_probability = 0.95 ), 0.95, epsilon ); in test_stat() 58 BOOST_CHECK_CLOSE( quantile(acc0, quantile_probability = 0.975), 0.975, epsilon ); in test_stat() 59 BOOST_CHECK_CLOSE( quantile(acc0, quantile_probability = 0.99 ), 0.99, epsilon ); in test_stat() 60 BOOST_CHECK_CLOSE( quantile(acc0, quantile_probability = 0.999), 0.999, epsilon ); in test_stat() 61 BOOST_CHECK_CLOSE( quantile(acc2, quantile_probability = 0.05 ), 0.05, 4*epsilon ); in test_stat() 62 BOOST_CHECK_CLOSE( quantile(acc2, quantile_probability = 0.025), 0.025, 5*epsilon ); in test_stat() 63 BOOST_CHECK_CLOSE( quantile(acc2, quantile_probability = 0.01 ), 0.01, 7*epsilon ); in test_stat() 64 BOOST_CHECK_CLOSE( quantile(acc2, quantile_probability = 0.001), 0.001, 22*epsilon ); in test_stat() 67 BOOST_CHECK_CLOSE( quantile(acc1, quantile_probability = 0.975), 1.959963, epsilon ); in test_stat() 68 BOOST_CHECK_CLOSE( quantile(acc1, quantile_probability = 0.999), 3.090232, 3*epsilon ); in test_stat() [all …]
|
D | pot_quantile.cpp | 80 BOOST_CHECK_CLOSE( quantile(acc1, quantile_probability = 0.999), 3.090232, 3*epsilon ); in test_stat() 81 BOOST_CHECK_CLOSE( quantile(acc2, quantile_probability = 0.999), 3.090232, 2*epsilon ); in test_stat() 82 BOOST_CHECK_CLOSE( quantile(acc3, quantile_probability = 0.001), -3.090232, 2*epsilon ); in test_stat() 83 BOOST_CHECK_CLOSE( quantile(acc4, quantile_probability = 0.001), -3.090232, 2*epsilon ); in test_stat() 85 BOOST_CHECK_CLOSE( quantile(acc5, quantile_probability = 0.999), 6.908, 3*epsilon ); in test_stat() 86 BOOST_CHECK_CLOSE( quantile(acc6, quantile_probability = 0.999), 6.908, 3*epsilon ); in test_stat() 109 BOOST_CHECK_CLOSE(quantile(acc, quantile_probability = 0.999), 3.090232, 3*epsilon); in test_persistency() 116 BOOST_CHECK_CLOSE(quantile(acc, quantile_probability = 0.999), 3.090232, 3*epsilon); in test_persistency()
|
D | extended_p_square_quantile.cpp | 72 quantile(acc, quantile_probability = 0.99025 + i*0.001) in test_stat() 77 quantile(acc2, quantile_probability = 0.99025 + i*0.001) in test_stat() 82 quantile(acc_weighted, quantile_probability = 0.99025 + i*0.001) in test_stat() 87 quantile(acc_weighted2, quantile_probability = 0.99025 + i*0.001) in test_stat() 132 quantile(acc, quantile_probability = 0.99025) in test_persistency() 137 quantile(acc_weighted, quantile_probability = 0.99025) in test_persistency() 152 quantile(acc, quantile_probability = 0.99025) in test_persistency() 157 quantile(acc_weighted, quantile_probability = 0.99025) in test_persistency()
|
/third_party/boost/libs/math/test/compile_test/ |
D | test_compile_result.hpp | 100 check_result<value_type>(quantile(dist, x)); in constraints() 101 check_result<value_type>(quantile(complement(dist, x))); in constraints() 123 check_result<value_type>(quantile(dist, f)); in constraints() 124 check_result<value_type>(quantile(complement(dist, f))); in constraints() 130 check_result<value_type>(quantile(dist, d)); in constraints() 131 check_result<value_type>(quantile(complement(dist, d))); in constraints() 137 check_result<value_type>(quantile(dist, l)); in constraints() 138 check_result<value_type>(quantile(complement(dist, l))); in constraints() 144 check_result<value_type>(quantile(dist, i)); in constraints() 145 check_result<value_type>(quantile(complement(dist, i))); in constraints() [all …]
|