1 #ifndef STAN_MATH_PRIM_MAT_ERR_CHECK_ORDERED_HPP
2 #define STAN_MATH_PRIM_MAT_ERR_CHECK_ORDERED_HPP
30 template <
typename T_y>
33 const Eigen::Matrix<T_y, Eigen::Dynamic, 1>& y) {
42 for (
size_t n = 1; n < y.size(); n++) {
43 if (!(y[n] > y[n-1])) {
44 std::ostringstream msg1;
45 msg1 <<
"is not a valid ordered vector."
48 std::string msg1_str(msg1.str());
49 std::ostringstream msg2;
50 msg2 <<
", but should be greater than the previous element, "
52 std::string msg2_str(msg2.str());
54 msg1_str.c_str(), msg2_str.c_str());
Primary template class for the metaprogram to compute the index type of a container.
bool check_ordered(const char *function, const char *name, const std::vector< T_y > &y)
Return true if the specified vector is sorted into strictly increasing order.
void domain_error(const char *function, const char *name, const T &y, const char *msg1, const char *msg2)
Throw a domain error with a consistently formatted message.