1#ifndef STAN_MATH_REV_CONSTRAINT_POSITIVE_ORDERED_CONSTRAIN_HPP
2#define STAN_MATH_REV_CONSTRAINT_POSITIVE_ORDERED_CONSTRAIN_HPP
24template <
typename T, require_rev_col_vector_t<T>* =
nullptr>
26 using ret_type = plain_type_t<T>;
34 arena_t<T> arena_x = x;
35 Eigen::VectorXd y_val(N);
36 arena_t<Eigen::VectorXd> exp_x(N);
38 exp_x(0) = std::exp(
value_of(arena_x)(0));
39 y_val(0) = exp_x.coeff(0);
40 for (
int n = 1; n < N; ++n) {
41 exp_x(n) = std::exp(
value_of(arena_x)(n));
42 y_val(n) = y_val.coeff(n - 1) + exp_x.coeff(n);
45 arena_t<ret_type> y = y_val;
48 const size_t N = arena_x.size();
49 double rolling_adjoint_sum = 0.0;
51 for (
int n = N; --n >= 0;) {
52 rolling_adjoint_sum += y.adj().coeff(n);
53 arena_x.adj().coeffRef(n) += exp_x.coeff(n) * rolling_adjoint_sum;
void reverse_pass_callback(F &&functor)
Puts a callback on the autodiff stack to be called in reverse pass.
T value_of(const fvar< T > &v)
Return the value of the specified variable.
auto positive_ordered_constrain(const EigVec &x)
Return an increasing positive ordered vector derived from the specified free vector.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...