1 #ifndef STAN_MATH_PRIM_SCAL_PROB_BERNOULLI_RNG_HPP 2 #define STAN_MATH_PRIM_SCAL_PROB_BERNOULLI_RNG_HPP 4 #include <boost/random/bernoulli_distribution.hpp> 5 #include <boost/random/variate_generator.hpp> 33 using boost::variate_generator;
34 using boost::bernoulli_distribution;
36 static const char*
function(
"bernoulli_rng");
39 check_bounded(
function,
"Probability parameter", theta, 0, 1);
41 variate_generator<RNG&, bernoulli_distribution<> >
void check_finite(const char *function, const char *name, const T_y &y)
Check if y is finite.
void check_bounded(const char *function, const char *name, const T_y &y, const T_low &low, const T_high &high)
Check if the value is between the low and high values, inclusively.
int bernoulli_rng(double theta, RNG &rng)
Return pseudorandom Bernoulli draw with specified chance of success using the specified random number...