1#ifndef STAN_MATH_PRIM_CONSTRAINT_ORDERED_CONSTRAIN_HPP
2#define STAN_MATH_PRIM_CONSTRAINT_ORDERED_CONSTRAIN_HPP
24template <
typename EigVec, require_eigen_col_vector_t<EigVec>* =
nullptr,
25 require_not_st_var<EigVec>* =
nullptr>
28 Eigen::Index k = x.size();
30 const auto& x_ref =
to_ref(x);
35 for (Eigen::Index i = 1; i < k; ++i) {
36 y.coeffRef(i) = y.coeff(i - 1) +
exp(x_ref.coeff(i));
53template <
typename EigVec, require_eigen_col_vector_t<EigVec>* =
nullptr>
55 const auto& x_ref =
to_ref(x);
56 if (
likely(x.size() > 1)) {
57 lp +=
sum(x_ref.tail(x.size() - 1));
80template <
bool Jacobian,
typename T, require_not_std_vector_t<T>* =
nullptr>
107template <
bool Jacobian,
typename T, require_std_vector_t<T>* =
nullptr>
109 return apply_vector_unary<T>::apply(
110 x, [&lp](
auto&& v) {
return ordered_constrain<Jacobian>(v, lp); });
typename value_type< T >::type value_type_t
Helper function for accessing underlying type.
typename return_type< Ts... >::type return_type_t
Convenience type for the return type of the specified template parameters.
ref_type_t< T && > to_ref(T &&a)
This evaluates expensive Eigen expressions.
auto sum(const std::vector< T > &m)
Return the sum of the entries of the specified standard vector.
plain_type_t< EigVec > ordered_constrain(const EigVec &x)
Return an increasing ordered vector derived from the specified free vector.
fvar< T > exp(const fvar< T > &x)
typename plain_type< T >::type plain_type_t
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...