Stan Math Library
2.9.0
reverse mode automatic differentiation
Main Page
Modules
Namespaces
Classes
Files
File List
File Members
stan
math
prim
scal
prob
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>
6
#include <
stan/math/prim/scal/meta/OperandsAndPartials.hpp
>
7
#include <
stan/math/prim/scal/err/check_consistent_sizes.hpp
>
8
#include <
stan/math/prim/scal/err/check_bounded.hpp
>
9
#include <
stan/math/prim/scal/err/check_finite.hpp
>
10
#include <
stan/math/prim/scal/err/check_not_nan.hpp
>
11
#include <
stan/math/prim/scal/fun/constants.hpp
>
12
#include <
stan/math/prim/scal/fun/inv_logit.hpp
>
13
#include <
stan/math/prim/scal/fun/log1m.hpp
>
14
#include <
stan/math/prim/scal/fun/value_of.hpp
>
15
#include <
stan/math/prim/scal/meta/include_summand.hpp
>
16
17
namespace
stan
{
18
19
namespace
math {
20
21
template
<
class
RNG>
22
inline
int
23
bernoulli_rng
(
const
double
theta,
24
RNG& rng) {
25
using
boost::variate_generator;
26
using
boost::bernoulli_distribution;
27
28
static
const
char
*
function
(
"stan::math::bernoulli_rng"
);
29
30
using
stan::math::check_finite
;
31
using
stan::math::check_bounded
;
32
33
check_finite
(
function
,
"Probability parameter"
, theta);
34
check_bounded
(
function
,
"Probability parameter"
, theta, 0, 1);
35
36
variate_generator<RNG&, bernoulli_distribution<> >
37
bernoulli_rng
(rng, bernoulli_distribution<>(theta));
38
return
bernoulli_rng
();
39
}
40
}
41
}
42
#endif
check_not_nan.hpp
stan
Definition:
log_sum_exp.hpp:8
stan::math::check_bounded
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.
Definition:
check_bounded.hpp:95
stan::math::bernoulli_rng
int bernoulli_rng(const double theta, RNG &rng)
Definition:
bernoulli_rng.hpp:23
include_summand.hpp
OperandsAndPartials.hpp
log1m.hpp
check_bounded.hpp
stan::math::check_finite
bool check_finite(const char *function, const char *name, const T_y &y)
Return true if y is finite.
Definition:
check_finite.hpp:62
constants.hpp
check_finite.hpp
value_of.hpp
inv_logit.hpp
check_consistent_sizes.hpp
[
Stan Home Page
]
© 2011–2015, Stan Development Team.