Stan Math Library  2.10.0
reverse mode automatic differentiation
domain_error_vec.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_ERR_DOMAIN_ERROR_VEC_HPP
2 #define STAN_MATH_PRIM_SCAL_ERR_DOMAIN_ERROR_VEC_HPP
3 
8 #include <sstream>
9 #include <string>
10 
11 namespace stan {
12 
13  namespace math {
14 
37  template <typename T>
38  inline void domain_error_vec(const char* function,
39  const char* name,
40  const T& y,
41  const size_t i,
42  const char* msg1,
43  const char* msg2) {
44  std::ostringstream vec_name_stream;
45  vec_name_stream << name
46  << "[" << stan::error_index::value + i << "]";
47  std::string vec_name(vec_name_stream.str());
48  domain_error(function, vec_name.c_str(), stan::get(y, i), msg1, msg2);
49  }
50 
72  template <typename T>
73  inline void domain_error_vec(const char* function,
74  const char* name,
75  const T& y,
76  const size_t i,
77  const char* msg) {
78  domain_error_vec(function, name, y, i, msg, "");
79  }
80 
81  }
82 }
83 #endif
void domain_error_vec(const char *function, const char *name, const T &y, const size_t i, const char *msg1, const char *msg2)
Throw a domain error with a consistently formatted message.
T get(const std::vector< T > &x, size_t n)
Definition: get.hpp:10
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.

     [ Stan Home Page ] © 2011–2016, Stan Development Team.