concept_checks.hpp 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. // Copyright 2002 The Trustees of Indiana University.
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // Boost.MultiArray Library
  6. // Authors: Ronald Garcia
  7. // Jeremy Siek
  8. // Andrew Lumsdaine
  9. // See http://www.boost.org/libs/multi_array for documentation.
  10. #ifndef BOOST_MULTI_ARRAY_CONCEPT_CHECKS_RG110101_HPP
  11. #define BOOST_MULTI_ARRAY_CONCEPT_CHECKS_RG110101_HPP
  12. //
  13. // concept-checks.hpp - Checks out Const MultiArray and MultiArray
  14. // concepts
  15. //
  16. #include "boost/concept_check.hpp"
  17. #include "boost/iterator/iterator_concepts.hpp"
  18. namespace boost {
  19. namespace multi_array_concepts {
  20. namespace detail {
  21. //
  22. // idgen_helper -
  23. // This is a helper for generating index_gen instantiations with
  24. // the right type in order to test the call to
  25. // operator[](index_gen). Since one would normally write:
  26. // A[ indices[range1][range2] ]; // or
  27. // B[ indices[index1][index2][range1] ];
  28. // idgen helper allows us to generate the "indices" type by
  29. // creating it through recursive calls.
  30. template <std::size_t N>
  31. struct idgen_helper {
  32. template <typename Array, typename IdxGen, typename Call_Type>
  33. static void call(Array& a, const IdxGen& idgen, Call_Type c) {
  34. typedef typename Array::index_range index_range;
  35. typedef typename Array::index index;
  36. idgen_helper<N-1>::call(a,idgen[c],c);
  37. }
  38. };
  39. template <>
  40. struct idgen_helper<0> {
  41. template <typename Array, typename IdxGen, typename Call_Type>
  42. static void call(Array& a, const IdxGen& idgen, Call_Type) {
  43. typedef typename Array::index_range index_range;
  44. typedef typename Array::index index;
  45. a[ idgen ];
  46. }
  47. };
  48. } // namespace detail
  49. template <typename Array, std::size_t NumDims >
  50. struct ConstMultiArrayConcept
  51. {
  52. void constraints() {
  53. // function_requires< CopyConstructibleConcept<Array> >();
  54. function_requires< boost_concepts::ForwardTraversalConcept<iterator> >();
  55. function_requires< boost_concepts::ReadableIteratorConcept<iterator> >();
  56. function_requires< boost_concepts::ForwardTraversalConcept<const_iterator> >();
  57. function_requires< boost_concepts::ReadableIteratorConcept<const_iterator> >();
  58. // RG - a( CollectionArchetype) when available...
  59. a[ id ];
  60. // Test slicing, keeping only the first dimension, losing the rest
  61. detail::idgen_helper<NumDims-1>::call(a,idgen[range],id);
  62. // Test slicing, keeping all dimensions.
  63. detail::idgen_helper<NumDims-1>::call(a,idgen[range],range);
  64. st = a.size();
  65. st = a.num_dimensions();
  66. st = Array::dimensionality;
  67. st = a.num_elements();
  68. stp = a.shape();
  69. idp = a.strides();
  70. idp = a.index_bases();
  71. cit = a.begin();
  72. cit = a.end();
  73. crit = a.rbegin();
  74. crit = a.rend();
  75. eltp = a.origin();
  76. }
  77. typedef typename Array::value_type value_type;
  78. typedef typename Array::reference reference;
  79. typedef typename Array::const_reference const_reference;
  80. typedef typename Array::size_type size_type;
  81. typedef typename Array::difference_type difference_type;
  82. typedef typename Array::iterator iterator;
  83. typedef typename Array::const_iterator const_iterator;
  84. typedef typename Array::reverse_iterator reverse_iterator;
  85. typedef typename Array::const_reverse_iterator const_reverse_iterator;
  86. typedef typename Array::element element;
  87. typedef typename Array::index index;
  88. typedef typename Array::index_gen index_gen;
  89. typedef typename Array::index_range index_range;
  90. typedef typename Array::extent_gen extent_gen;
  91. typedef typename Array::extent_range extent_range;
  92. Array a;
  93. size_type st;
  94. const size_type* stp;
  95. index id;
  96. const index* idp;
  97. const_iterator cit;
  98. const_reverse_iterator crit;
  99. const element* eltp;
  100. index_gen idgen;
  101. index_range range;
  102. };
  103. template <typename Array, std::size_t NumDims >
  104. struct MutableMultiArrayConcept
  105. {
  106. void constraints() {
  107. // function_requires< CopyConstructibleConcept<Array> >();
  108. function_requires< boost_concepts::ForwardTraversalConcept<iterator> >();
  109. function_requires< boost_concepts::ReadableIteratorConcept<iterator> >();
  110. function_requires< boost_concepts::WritableIteratorConcept<iterator> >();
  111. function_requires< boost_concepts::ForwardTraversalConcept<const_iterator> >();
  112. function_requires< boost_concepts::ReadableIteratorConcept<const_iterator> >();
  113. function_requires< boost::OutputIterator<iterator,value_type> >();
  114. // RG - a( CollectionArchetype) when available...
  115. value_type vt = a[ id ];
  116. // Test slicing, keeping only the first dimension, losing the rest
  117. detail::idgen_helper<NumDims-1>::call(a,idgen[range],id);
  118. // Test slicing, keeping all dimensions.
  119. detail::idgen_helper<NumDims-1>::call(a,idgen[range],range);
  120. st = a.size();
  121. st = a.num_dimensions();
  122. st = a.num_elements();
  123. stp = a.shape();
  124. idp = a.strides();
  125. idp = a.index_bases();
  126. it = a.begin();
  127. it = a.end();
  128. rit = a.rbegin();
  129. rit = a.rend();
  130. eltp = a.origin();
  131. const_constraints(a);
  132. }
  133. void const_constraints(const Array& a) {
  134. // value_type vt = a[ id ];
  135. // Test slicing, keeping only the first dimension, losing the rest
  136. detail::idgen_helper<NumDims-1>::call(a,idgen[range],id);
  137. // Test slicing, keeping all dimensions.
  138. detail::idgen_helper<NumDims-1>::call(a,idgen[range],range);
  139. st = a.size();
  140. st = a.num_dimensions();
  141. st = a.num_elements();
  142. stp = a.shape();
  143. idp = a.strides();
  144. idp = a.index_bases();
  145. cit = a.begin();
  146. cit = a.end();
  147. crit = a.rbegin();
  148. crit = a.rend();
  149. eltp = a.origin();
  150. }
  151. typedef typename Array::value_type value_type;
  152. typedef typename Array::reference reference;
  153. typedef typename Array::const_reference const_reference;
  154. typedef typename Array::size_type size_type;
  155. typedef typename Array::difference_type difference_type;
  156. typedef typename Array::iterator iterator;
  157. typedef typename Array::const_iterator const_iterator;
  158. typedef typename Array::reverse_iterator reverse_iterator;
  159. typedef typename Array::const_reverse_iterator const_reverse_iterator;
  160. typedef typename Array::element element;
  161. typedef typename Array::index index;
  162. typedef typename Array::index_gen index_gen;
  163. typedef typename Array::index_range index_range;
  164. typedef typename Array::extent_gen extent_gen;
  165. typedef typename Array::extent_range extent_range;
  166. Array a;
  167. size_type st;
  168. const size_type* stp;
  169. index id;
  170. const index* idp;
  171. iterator it;
  172. const_iterator cit;
  173. reverse_iterator rit;
  174. const_reverse_iterator crit;
  175. const element* eltp;
  176. index_gen idgen;
  177. index_range range;
  178. };
  179. } // namespace multi_array
  180. namespace detail {
  181. namespace multi_array { // Old locations for these
  182. using boost::multi_array_concepts::ConstMultiArrayConcept;
  183. using boost::multi_array_concepts::MutableMultiArrayConcept;
  184. }
  185. }
  186. } // namespace boost
  187. #endif // BOOST_MULTI_ARRAY_CONCEPT_CHECKS_RG110101_HPP