Stan Math Library  2.8.0
reverse mode automatic differentiation
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros Groups
index_type.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_META_INDEX_TYPE_HPP
2 #define STAN_MATH_PRIM_MAT_META_INDEX_TYPE_HPP
3 
5 #include <Eigen/Core>
6 
7 namespace stan {
8 
9  namespace math {
10 
19  template <typename T, int R, int C>
20  struct index_type<Eigen::Matrix<T, R, C> > {
21  typedef typename Eigen::Matrix<T, R, C>::Index type;
22  };
23 
24 
25  }
26 
27 }
28 
29 
30 #endif
Primary template class for the metaprogram to compute the index type of a container.
Definition: index_type.hpp:19

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