1#ifndef STAN_MATH_PRIM_FUN_LOG_FALLING_FACTORIAL_HPP
2#define STAN_MATH_PRIM_FUN_LOG_FALLING_FACTORIAL_HPP
54template <
typename T1,
typename T2, require_all_arithmetic_t<T1, T2>* =
nullptr>
59 static constexpr const char* function =
"log_falling_factorial";
74template <
typename T1,
typename T2, require_any_container_t<T1, T2>* =
nullptr>
typename return_type< Ts... >::type return_type_t
Convenience type for the return type of the specified template parameters.
static constexpr double NOT_A_NUMBER
(Quiet) not-a-number value.
fvar< T > lgamma(const fvar< T > &x)
Return the natural logarithm of the gamma function applied to the specified argument.
void check_positive(const char *function, const char *name, const T_y &y)
Check if y is positive.
fvar< T > log_falling_factorial(const fvar< T > &x, const fvar< T > &n)
auto apply_scalar_binary(const T1 &x, const T2 &y, const F &f)
Base template function for vectorization of binary scalar functions defined by applying a functor to ...
bool is_any_nan(const T &x)
Returns true if the input is NaN and false otherwise.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...