Automatic Differentiation
 
Loading...
Searching...
No Matches
log1m_exp.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_REV_FUN_LOG1M_EXP_HPP
2#define STAN_MATH_REV_FUN_LOG1M_EXP_HPP
3
9
10namespace stan {
11namespace math {
12
25template <typename T, require_var_t<T>* = nullptr>
26inline auto log1m_exp(T&& x) {
27 return make_callback_var(log1m_exp(x.val()), [x](auto& vi) mutable {
28 as_array_or_scalar(x.adj())
29 -= as_array_or_scalar(vi.adj()) / as_array_or_scalar(expm1(-x.val()));
30 });
31}
32
33} // namespace math
34} // namespace stan
35#endif
fvar< T > log1m_exp(const fvar< T > &x)
Return the natural logarithm of one minus the exponentiation of the specified argument.
Definition log1m_exp.hpp:22
var_value< plain_type_t< T > > make_callback_var(T &&value, F &&functor)
Creates a new var initialized with a callback_vari with a given value and reverse-pass callback funct...
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...