Stan Math Library  2.12.0
reverse mode automatic differentiation
binomial_rng.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_PROB_BINOMIAL_RNG_HPP
2 #define STAN_MATH_PRIM_SCAL_PROB_BINOMIAL_RNG_HPP
3 
4 #include <boost/random/binomial_distribution.hpp>
5 #include <boost/random/variate_generator.hpp>
22 
23 namespace stan {
24  namespace math {
25 
26  template <class RNG>
27  inline int
28  binomial_rng(const int N,
29  const double theta,
30  RNG& rng) {
31  using boost::variate_generator;
32  using boost::binomial_distribution;
33 
34  static const char* function("binomial_rng");
35 
36  check_nonnegative(function, "Population size parameter", N);
37  check_finite(function, "Probability parameter", theta);
38  check_less_or_equal(function, "Probability parameter", theta, 1.0);
39  check_greater_or_equal(function, "Probability parameter", theta, 0.0);
40 
41  variate_generator<RNG&, binomial_distribution<> >
42  binomial_rng(rng, binomial_distribution<>(N, theta));
43  return binomial_rng();
44  }
45 
46  }
47 }
48 #endif
bool check_greater_or_equal(const char *function, const char *name, const T_y &y, const T_low &low)
Return true if y is greater or equal than low.
bool check_less_or_equal(const char *function, const char *name, const T_y &y, const T_high &high)
Return true if y is less or equal to high.
bool check_finite(const char *function, const char *name, const T_y &y)
Return true if y is finite.
bool check_nonnegative(const char *function, const char *name, const T_y &y)
Return true if y is non-negative.
int binomial_rng(const int N, const double theta, RNG &rng)

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