1#ifndef STAN_MATH_PRIM_PROB_BERNOULLI_CDF_HPP
2#define STAN_MATH_PRIM_PROB_BERNOULLI_CDF_HPP
27template <
typename T_n,
typename T_prob,
29 T_n, T_prob>* =
nullptr>
33 static constexpr const char* function =
"bernoulli_cdf";
35 "Probability parameter", theta);
36 T_theta_ref theta_ref = theta;
39 check_bounded(function,
"Probability parameter", theta_arr, 0.0, 1.0);
50 return ops_partials.build(0.0);
52 const auto& log1m_theta =
select(theta_arr == 1, 0.0,
log1m(theta_arr));
53 const auto& P1 =
select(n_arr == 0, log1m_theta, 0.0);
55 T_partials_return P =
sum(P1);
58 partials<0>(ops_partials) =
select(n_arr == 0, -
exp(P - P1), 0.0);
60 return ops_partials.build(
exp(P));
require_all_not_t< is_nonscalar_prim_or_rev_kernel_expression< std::decay_t< Types > >... > require_all_not_nonscalar_prim_or_rev_kernel_expression_t
Require none of the types satisfy is_nonscalar_prim_or_rev_kernel_expression.
select_< as_operation_cl_t< T_condition >, as_operation_cl_t< T_then >, as_operation_cl_t< T_else > > select(T_condition &&condition, T_then &&then, T_else &&els)
Selection operation on kernel generator expressions.
return_type_t< T_prob_cl > bernoulli_cdf(const T_n_cl &n, const T_prob_cl &theta)
Returns the CDF of the Bernoulli distribution.
typename return_type< Ts... >::type return_type_t
Convenience type for the return type of the specified template parameters.
bool size_zero(const T &x)
Returns 1 if input is of length 0, returns 0 otherwise.
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.
constexpr bool any(T x)
Return true if any values in the input are true.
auto as_value_column_array_or_scalar(T &&a)
Extract the value from an object and for eigen vectors and std::vectors convert to an eigen column ar...
void check_consistent_sizes(const char *)
Trivial no input case, this function is a no-op.
auto sum(const std::vector< T > &m)
Return the sum of the entries of the specified standard vector.
fvar< T > log1m(const fvar< T > &x)
auto make_partials_propagator(Ops &&... ops)
Construct an partials_propagator.
fvar< T > exp(const fvar< T > &x)
typename ref_type_if< true, T >::type ref_type_t
typename partials_return_type< Args... >::type partials_return_t
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Extends std::true_type when instantiated with zero or more template parameters, all of which extend t...