Stan Math Library  2.11.0
reverse mode automatic differentiation
bernoulli_rng.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_PROB_BERNOULLI_RNG_HPP
2 #define STAN_MATH_PRIM_SCAL_PROB_BERNOULLI_RNG_HPP
3 
4 #include <boost/random/bernoulli_distribution.hpp>
5 #include <boost/random/variate_generator.hpp>
15 
16 namespace stan {
17 
18  namespace math {
19 
20  template <class RNG>
21  inline int
22  bernoulli_rng(const double theta,
23  RNG& rng) {
24  using boost::variate_generator;
25  using boost::bernoulli_distribution;
26 
27  static const char* function("stan::math::bernoulli_rng");
28 
31 
32  check_finite(function, "Probability parameter", theta);
33  check_bounded(function, "Probability parameter", theta, 0, 1);
34 
35  variate_generator<RNG&, bernoulli_distribution<> >
36  bernoulli_rng(rng, bernoulli_distribution<>(theta));
37  return bernoulli_rng();
38  }
39  }
40 }
41 #endif
bool check_bounded(const char *function, const char *name, const T_y &y, const T_low &low, const T_high &high)
Return true if the value is between the low and high values, inclusively.
int bernoulli_rng(const double theta, RNG &rng)
bool check_finite(const char *function, const char *name, const T_y &y)
Return true if y is finite.

     [ Stan Home Page ] © 2011–2016, Stan Development Team.