Automatic Differentiation
 
Loading...
Searching...
No Matches
log1p.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_REV_FUN_LOG1P_HPP
2#define STAN_MATH_REV_FUN_LOG1P_HPP
3
7
8namespace stan {
9namespace math {
10
22template <typename T, require_stan_scalar_or_eigen_t<T>* = nullptr>
23inline auto log1p(const var_value<T>& a) {
24 return make_callback_var(log1p(a.val()), [a](auto& vi) mutable {
25 as_array_or_scalar(a.adj())
26 += as_array_or_scalar(vi.adj()) / (1.0 + as_array_or_scalar(a.val()));
27 });
28}
29
30} // namespace math
31} // namespace stan
32#endif
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...
fvar< T > log1p(const fvar< T > &x)
Definition log1p.hpp:12
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...