1#ifndef STAN_MATH_OPENCL_KERNELS_DEVICE_FUNCTIONS_LOG_INV_LOGIT_DIFF_HPP 
    2#define STAN_MATH_OPENCL_KERNELS_DEVICE_FUNCTIONS_LOG_INV_LOGIT_DIFF_HPP 
   10namespace opencl_kernels {
 
   13static constexpr const char* log_inv_logit_diff_device_function
 
   15      "#ifndef STAN_MATH_OPENCL_KERNELS_DEVICE_FUNCTIONS_LOG_INV_LOGIT_DIFF\n" 
   17      "STAN_MATH_OPENCL_KERNELS_DEVICE_FUNCTIONS_LOG_INV_LOGIT_" 
double log1m_exp(double a)
Calculates the natural logarithm of one minus the exponential of the specified value without overflow...
 
double log1p_exp(double a)
Calculates the log of 1 plus the exponential of the specified value without overflow.
 
double log_inv_logit_diff(double x, double y)
Returns the natural logarithm of the difference of the inverse logits of the specified arguments.
 
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...