1#ifndef STAN_MATH_PRIM_PROB_BERNOULLI_LCDF_HPP
2#define STAN_MATH_PRIM_PROB_BERNOULLI_LCDF_HPP
27template <
typename T_n,
typename T_prob,
29 T_n, T_prob>* =
nullptr>
32 static constexpr const char* function =
"bernoulli_lcdf";
34 "Probability parameter", theta);
35 T_theta_ref theta_ref = theta;
38 check_bounded(function,
"Probability parameter", theta_arr, 0.0, 1.0);
52 const auto& log1m_theta =
select(theta_arr == 1, 0.0,
log1m(theta_arr));
55 partials<0>(ops_partials) =
select(n_arr == 0, -
exp(-log1m_theta), 0.0);
58 return ops_partials.build(
sum(
select(n_arr == 0, log1m_theta, 0.0)));
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_lcdf(const T_n_cl &n, const T_prob_cl &theta)
Returns the log 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.
static constexpr double NEGATIVE_INFTY
Negative infinity.
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
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...