Algorith sandbox
ublas_matrix_expression_concept.hpp
1 #pragma once
2 #include <boost/concept_check.hpp>
3 #include <boost/concept/detail/concept_def.hpp>
4 
5 namespace algo { namespace ad {
6  BOOST_concept(UblasMatrixExpression, (M))
7  {
8  typedef typename M::difference_type difference_type;
9  typedef typename M::const_iterator1 const_iterator1;
10  typedef typename M::const_iterator2 const_iterator2;
11  typedef typename M::const_closure_type const_closure_type;
12  typedef typename M::orientation_category orientation_category;
13  BOOST_CONCEPT_USAGE(UblasMatrixExpression)
14  {
15  }
16  private:
17  };
18 } } // namespace algo { namespace ad {
19 
Definition: ublas_matrix_expression_concept.hpp:5