2 #include <boost/concept_check.hpp>
3 #include <boost/concept/detail/concept_def.hpp>
5 namespace algo {
namespace ad {
6 BOOST_concept(UblasMatrixExpression, (M))
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)
Definition: ublas_matrix_expression_concept.hpp:5