1#ifndef STAN_MATH_REV_CONSTRAINT_SUM_TO_ZERO_CONSTRAIN_HPP
2#define STAN_MATH_REV_CONSTRAINT_SUM_TO_ZERO_CONSTRAIN_HPP
42template <
typename T, require_rev_col_vector_t<T>* =
nullptr>
48 auto arena_y =
to_arena(std::forward<T>(y));
52 const auto N = arena_y.size();
55 for (
int i = 0; i < N; ++i) {
56 double n =
static_cast<double>(i + 1);
59 sum_u_adj += arena_z.adj().coeff(i);
62 double v_adj = -arena_z.adj().coeff(i + 1) * n;
64 double w_adj = v_adj + sum_u_adj;
66 arena_y.adj().coeffRef(i) += w_adj /
sqrt(n * (n + 1));
83template <
typename T, require_rev_matrix_t<T>* =
nullptr,
84 require_not_t<is_rev_vector<T>>* =
nullptr>
90 auto arena_x =
to_arena(std::forward<T>(x));
94 const auto Nf = arena_x.val().
rows();
95 const auto Mf = arena_x.val().
cols();
97 Eigen::VectorXd d_beta = Eigen::VectorXd::Zero(Nf);
99 for (
int j = 0; j < Mf; ++j) {
100 double a_j =
inv_sqrt((j + 1.0) * (j + 2.0));
101 double b_j = (j + 1.0) * a_j;
105 for (
int i = 0; i < Nf; ++i) {
106 double a_i =
inv_sqrt((i + 1.0) * (i + 2.0));
107 double b_i = (i + 1.0) * a_i;
109 double dY = arena_z.adj().coeff(i, j) - arena_z.adj().coeff(Nf, j)
110 + arena_z.adj().coeff(Nf, Mf) - arena_z.adj().coeff(i, Mf);
111 double dI_from_beta = a_j * d_beta.coeff(i);
112 d_beta.coeffRef(i) += -dY;
114 double dI_from_alpha = b_j * dY;
115 double dI = dI_from_alpha + dI_from_beta;
116 arena_x.adj().coeffRef(i, j) += b_i * dI + a_i * d_ax;
150template <
typename T,
typename Lp, is_rev_matrix<T>* =
nullptr>
int64_t cols(const T_x &x)
Returns the number of columns in the specified kernel generator expression.
int64_t rows(const T_x &x)
Returns the number of rows in the specified kernel generator expression.
void reverse_pass_callback(F &&functor)
Puts a callback on the autodiff stack to be called in reverse pass.
arena_t< T > to_arena(const T &a)
Converts given argument into a type that either has any dynamic allocation on AD stack or schedules i...
fvar< T > sqrt(const fvar< T > &x)
plain_type_t< Vec > sum_to_zero_constrain(const Vec &y)
Return a vector with sum zero corresponding to the specified free vector.
fvar< T > inv_sqrt(const fvar< T > &x)
typename plain_type< T >::type plain_type_t
typename internal::arena_type_impl< std::decay_t< T > >::type arena_t
Determines a type that can be used in place of T that does any dynamic allocations on the AD stack.
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...