1#ifndef STAN_MATH_PRIM_PROB_BERNOULLI_LCCDF_HPP
2#define STAN_MATH_PRIM_PROB_BERNOULLI_LCCDF_HPP
29template <
typename T_n,
typename T_prob,
31 T_n, T_prob>* =
nullptr>
34 static constexpr const char* function =
"bernoulli_lccdf";
36 "Probability parameter", theta);
37 T_theta_ref theta_ref = theta;
40 check_bounded(function,
"Probability parameter", theta_arr, 0.0, 1.0);
51 return ops_partials.build(0.0);
52 }
else if (
any(n_arr >= 1)) {
58 double broadcast_n = theta_size == n_size ? 1 : n_size;
61 partials<0>(ops_partials) =
inv(theta_arr) * broadcast_n;
64 return ops_partials.build(
sum(
log(theta_arr)) * broadcast_n);
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.
return_type_t< T_prob_cl > bernoulli_lccdf(const T_n_cl &n, const T_prob_cl &theta)
Returns the log CCDF of the Bernoulli distribution.
typename return_type< Ts... >::type return_type_t
Convenience type for the return type of the specified template parameters.
int64_t size(const T &m)
Returns the size (number of the elements) of a matrix_cl or var_value<matrix_cl<T>>.
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.
fvar< T > log(const fvar< T > &x)
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 > inv(const fvar< T > &x)
auto make_partials_propagator(Ops &&... ops)
Construct an partials_propagator.
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...