]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/multi_array/view.hpp
* src/MenuBackend.[Ch]: the specialMenu is now a real menu, not a
[lyx.git] / boost / boost / multi_array / view.hpp
index fe69ba614cd006b03777579638acf56363dac0a2..067fb020986114e0b8a4e21b2d6c36eaf39cc20d 100644 (file)
@@ -1,3 +1,15 @@
+// Copyright 2002 The Trustees of Indiana University.
+
+// Use, modification and distribution is subject to the Boost Software 
+// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+
+//  Boost.MultiArray Library
+//  Authors: Ronald Garcia
+//           Jeremy Siek
+//           Andrew Lumsdaine
+//  See http://www.boost.org/libs/multi_array for documentation.
+
 #ifndef BOOST_MULTI_ARRAY_VIEW_RG071301_HPP
 #define BOOST_MULTI_ARRAY_VIEW_RG071301_HPP
 
@@ -11,6 +23,7 @@
 #include "boost/multi_array/storage_order.hpp"
 #include "boost/multi_array/subarray.hpp"
 #include "boost/multi_array/algorithm.hpp"
+#include "boost/type_traits/is_integral.hpp"
 #include "boost/array.hpp"
 #include "boost/limits.hpp"
 #include <algorithm>
@@ -32,7 +45,6 @@ public:
   typedef typename super_type::value_type value_type;
   typedef typename super_type::const_reference const_reference;
   typedef typename super_type::const_iterator const_iterator;
-  typedef typename super_type::const_iter_base const_iter_base;
   typedef typename super_type::const_reverse_iterator const_reverse_iterator;
   typedef typename super_type::element element;
   typedef typename super_type::size_type size_type;
@@ -53,7 +65,7 @@ public:
 
   template <typename OPtr>
   const_multi_array_view(const 
-                        const_multi_array_view<T,NumDims,OPtr>& other) :
+                         const_multi_array_view<T,NumDims,OPtr>& other) :
     base_(other.base_), origin_offset_(other.origin_offset_),
     num_elements_(other.num_elements_), extent_list_(other.extent_list_),
     stride_list_(other.stride_list_), index_base_list_(other.index_base_list_)
@@ -61,16 +73,25 @@ public:
 
 
   template <class BaseList>
-  void reindex(const BaseList& values) {
-    boost::copy_n(values.begin(),num_dimensions(),index_base_list_.begin());
+#ifdef BOOST_NO_SFINAE
+  void
+#else
+  typename
+  disable_if<typename boost::is_integral<BaseList>::type,void >::type
+#endif
+  reindex(const BaseList& values) {
+    boost::function_requires<
+      detail::multi_array::CollectionConcept<BaseList> >();
+    boost::detail::multi_array::
+      copy_n(values.begin(),num_dimensions(),index_base_list_.begin());
     origin_offset_ =
-      calculate_indexing_offset(stride_list_,index_base_list_);
+      this->calculate_indexing_offset(stride_list_,index_base_list_);
   }
 
   void reindex(index value) {
     index_base_list_.assign(value);
     origin_offset_ =
-      calculate_indexing_offset(stride_list_,index_base_list_);
+      this->calculate_indexing_offset(stride_list_,index_base_list_);
   }
 
   size_type num_dimensions() const { return NumDims; }
@@ -97,46 +118,48 @@ public:
 
   template <typename IndexList>
   const element& operator()(IndexList indices) const {
+    boost::function_requires<
+      detail::multi_array::CollectionConcept<IndexList> >();
     return super_type::access_element(boost::type<const element&>(),
-                                     origin(),
-                                     indices,strides());
+                                      indices,origin(),
+                                      shape(),strides(),index_bases());
   }
 
   // Only allow const element access
   const_reference operator[](index idx) const {
     return super_type::access(boost::type<const_reference>(),
-                             idx,origin(),
-                             shape(),strides(),
-                             index_bases());
+                              idx,origin(),
+                              shape(),strides(),
+                              index_bases());
   }
 
   // see generate_array_view in base.hpp
-#ifndef BOOST_MSVC
+#if !defined(BOOST_MSVC) || BOOST_MSVC > 1300
   template <int NDims>
 #else
   template <int NumDims, int NDims> // else ICE
 #endif // BOOST_MSVC
   typename const_array_view<NDims>::type 
   operator[](const boost::detail::multi_array::
-            index_gen<NumDims,NDims>& indices)
+             index_gen<NumDims,NDims>& indices)
     const {
-    typedef const_array_view<NDims>::type return_type;
+    typedef typename const_array_view<NDims>::type return_type;
     return
       super_type::generate_array_view(boost::type<return_type>(),
-                                     indices,
-                                     shape(),
-                                     strides(),
-                                     index_bases(),
-                                     origin());
+                                      indices,
+                                      shape(),
+                                      strides(),
+                                      index_bases(),
+                                      origin());
   }
   const_iterator begin() const {
-    return const_iterator(const_iter_base(*index_bases(),origin(),
-                                  shape(),strides(),index_bases()));
+    return const_iterator(*index_bases(),origin(),
+                          shape(),strides(),index_bases());
   }
 
   const_iterator end() const {
-    return const_iterator(const_iter_base(*index_bases()+*shape(),origin(),
-                                  shape(),strides(),index_bases()));
+    return const_iterator(*index_bases()+(index)*shape(),origin(),
+                          shape(),strides(),index_bases());
   }
   
   const_reverse_iterator rbegin() const {
@@ -150,46 +173,46 @@ public:
 
   template <typename OPtr>
   bool operator==(const
-                 const_multi_array_view<T,NumDims,OPtr>& rhs)
+                  const_multi_array_view<T,NumDims,OPtr>& rhs)
     const {
     if(std::equal(extent_list_.begin(),
-                 extent_list_.end(),
-                 rhs.extent_list_.begin()))
+                  extent_list_.end(),
+                  rhs.extent_list_.begin()))
       return std::equal(begin(),end(),rhs.begin());
     else return false;
   }
 
   template <typename OPtr>
   bool operator<(const
-                const_multi_array_view<T,NumDims,OPtr>& rhs)
+                 const_multi_array_view<T,NumDims,OPtr>& rhs)
     const {
     return std::lexicographical_compare(begin(),end(),rhs.begin(),rhs.end());
   }
 
   template <typename OPtr>
   bool operator!=(const
-                 const_multi_array_view<T,NumDims,OPtr>& rhs)
+                  const_multi_array_view<T,NumDims,OPtr>& rhs)
     const {
     return !(*this == rhs);
   }
 
   template <typename OPtr>
   bool operator>(const
-                const_multi_array_view<T,NumDims,OPtr>& rhs)
+                 const_multi_array_view<T,NumDims,OPtr>& rhs)
     const {
     return rhs < *this;
   }
 
   template <typename OPtr>
   bool operator<=(const
-                const_multi_array_view<T,NumDims,OPtr>& rhs)
+                 const_multi_array_view<T,NumDims,OPtr>& rhs)
     const {
     return !(*this > rhs);
   }
 
   template <typename OPtr>
   bool operator>=(const
-                const_multi_array_view<T,NumDims,OPtr>& rhs)
+                 const_multi_array_view<T,NumDims,OPtr>& rhs)
     const {
     return !(*this < rhs);
   }
@@ -207,20 +230,24 @@ public: // should be protected
   // to create strides  
   template <typename ExtentList, typename Index>
   explicit const_multi_array_view(TPtr base,
-                          const ExtentList& extents,
-                          const boost::array<Index,NumDims>& strides): 
+                           const ExtentList& extents,
+                           const boost::array<Index,NumDims>& strides): 
     base_(base), origin_offset_(0) {
 
     index_base_list_.assign(0);
 
     // Get the extents and strides
-    boost::copy_n(extents.begin(),NumDims,extent_list_.begin());
-    boost::copy_n(strides.begin(),NumDims,stride_list_.begin());
+    boost::detail::multi_array::
+      copy_n(extents.begin(),NumDims,extent_list_.begin());
+    boost::detail::multi_array::
+      copy_n(strides.begin(),NumDims,stride_list_.begin());
 
     // Calculate the array size
     num_elements_ = std::accumulate(extent_list_.begin(),extent_list_.end(),
-                           size_type(1),std::multiplies<size_type>());
+                            size_type(1),std::multiplies<size_type>());
+#if 0
     assert(num_elements_ != 0);
+#endif
   }
 
   typedef boost::array<size_type,NumDims> size_list;
@@ -248,11 +275,9 @@ public:
   typedef typename super_type::value_type value_type;
   typedef typename super_type::reference reference;
   typedef typename super_type::iterator iterator;
-  typedef typename super_type::iter_base iter_base;
   typedef typename super_type::reverse_iterator reverse_iterator;
   typedef typename super_type::const_reference const_reference;
   typedef typename super_type::const_iterator const_iterator;
-  typedef typename super_type::const_iter_base const_iter_base;
   typedef typename super_type::const_reverse_iterator const_reverse_iterator;
   typedef typename super_type::element element;
   typedef typename super_type::size_type size_type;
@@ -279,9 +304,9 @@ public:
       ConstMultiArrayConcept<ConstMultiArray,NumDims> >();
 
     // make sure the dimensions agree
-    assert(other.num_dimensions() == num_dimensions());
-    assert(std::equal(other.shape(),other.shape()+num_dimensions(),
-                     shape()));
+    assert(other.num_dimensions() == this->num_dimensions());
+    assert(std::equal(other.shape(),other.shape()+this->num_dimensions(),
+                      this->shape()));
     // iterator-based copy
     std::copy(other.begin(),other.end(),begin());
     return *this;
@@ -291,61 +316,66 @@ public:
   multi_array_view& operator=(const multi_array_view& other) {
     if (&other != this) {
       // make sure the dimensions agree
-      assert(other.num_dimensions() == num_dimensions());
-      assert(std::equal(other.shape(),other.shape()+num_dimensions(),
-                       shape()));
+      assert(other.num_dimensions() == this->num_dimensions());
+      assert(std::equal(other.shape(),other.shape()+this->num_dimensions(),
+                        this->shape()));
       // iterator-based copy
       std::copy(other.begin(),other.end(),begin());
     }
     return *this;
   }
 
-  element* origin() { return base_+origin_offset_; }
+  element* origin() { return this->base_+this->origin_offset_; }
 
   template <class IndexList>
   element& operator()(const IndexList& indices) {
+    boost::function_requires<
+      detail::multi_array::CollectionConcept<IndexList> >();
     return super_type::access_element(boost::type<element&>(),
-                                     origin(),
-                                     indices,strides());
+                                      indices,origin(),
+                                      this->shape(),this->strides(),
+                                      this->index_bases());
   }
 
 
   reference operator[](index idx) {
     return super_type::access(boost::type<reference>(),
-                             idx,origin(),
-                             shape(),strides(),
-                             index_bases());
+                              idx,origin(),
+                              this->shape(),this->strides(),
+                              this->index_bases());
   }
 
 
   // see generate_array_view in base.hpp
-#ifndef BOOST_MSVC
+#if !defined(BOOST_MSVC) || BOOST_MSVC > 1300
   template <int NDims>
 #else
   template <int NumDims, int NDims> // else ICE
 #endif // BOOST_MSVC
   typename array_view<NDims>::type 
   operator[](const boost::detail::multi_array::
-            index_gen<NumDims,NDims>& indices) {
-    typedef array_view<NDims>::type return_type;
+             index_gen<NumDims,NDims>& indices) {
+    typedef typename array_view<NDims>::type return_type;
     return
       super_type::generate_array_view(boost::type<return_type>(),
-                                     indices,
-                                     shape(),
-                                     strides(),
-                                     index_bases(),
-                                     origin());
+                                      indices,
+                                      this->shape(),
+                                      this->strides(),
+                                      this->index_bases(),
+                                      origin());
   }
   
   
   iterator begin() {
-    return iterator(iter_base(*index_bases(),origin(),
-                                  shape(),strides(),index_bases()));
+    return iterator(*this->index_bases(),origin(),
+                    this->shape(),this->strides(),
+                    this->index_bases());
   }
 
   iterator end() {
-    return iterator(iter_base(*index_bases()+*shape(),origin(),
-                                  shape(),strides(),index_bases()));
+    return iterator(*this->index_bases()+(index)*this->shape(),origin(),
+                    this->shape(),this->strides(),
+                    this->index_bases());
   }
 
   reverse_iterator rbegin() {
@@ -363,6 +393,8 @@ public:
 
   template <class IndexList>
   const element& operator()(const IndexList& indices) const {
+    boost::function_requires<
+      detail::multi_array::CollectionConcept<IndexList> >();
     return super_type::operator()(indices);
   }
 
@@ -371,14 +403,14 @@ public:
   }
 
   // see generate_array_view in base.hpp
-#ifndef BOOST_MSVC
+#if !defined(BOOST_MSVC) || BOOST_MSVC > 1300
   template <int NDims>
 #else
   template <int NumDims, int NDims> // else ICE
 #endif // BOOST_MSVC
   typename const_array_view<NDims>::type 
   operator[](const boost::detail::multi_array::
-            index_gen<NumDims,NDims>& indices)
+             index_gen<NumDims,NDims>& indices)
     const {
     return super_type::operator[](indices);
   }
@@ -410,8 +442,8 @@ public: // should be private
   // generate array views
   template <typename ExtentList, typename Index>
   explicit multi_array_view(T* base,
-                           const ExtentList& extents,
-                           const boost::array<Index,NumDims>& strides) :
+                            const ExtentList& extents,
+                            const boost::array<Index,NumDims>& strides) :
     super_type(base,extents,strides) { }
 
 };