• Home
  • Raw
  • Download

Lines Matching refs:complement

47          complement(  in check_uniform()
60 complement( in check_uniform()
155 cdf(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0))), in test_spots()
158 cdf(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0))), in test_spots()
161 cdf(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.1))), in test_spots()
165 cdf(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0.5))), in test_spots()
169 cdf(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(1))), in test_spots()
172 cdf(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(2))), 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()
213 quantile(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(0))), in test_spots()
217 quantile(complement(uniform_distribution<RealType>(0, 1), static_cast<RealType>(1))), in test_spots()
306 hazard(distu01, x), pdf(distu01, x) / cdf(complement(distu01, x)), tolerance); in test_spots()
309 chf(distu01, x), -log(cdf(complement(distu01, x))), tolerance); in test_spots()
360 BOOST_CHECK(cdf(complement(distu01, 0)) == 1); in test_spots()
361 BOOST_CHECK(cdf(complement(distu01, 1)) == 0); in test_spots()
363 BOOST_CHECK(quantile(complement(distu01, 0)) == 1); in test_spots()
365 BOOST_CHECK(quantile(complement(distu01, 1)) == 0); in test_spots()