os/ossrv/ossrv_pub/boost_apis/boost/multi_array.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright 2002 The Trustees of Indiana University.
sl@0
     2
sl@0
     3
// Use, modification and distribution is subject to the Boost Software 
sl@0
     4
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     5
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
     6
sl@0
     7
//  Boost.MultiArray Library
sl@0
     8
//  Authors: Ronald Garcia
sl@0
     9
//           Jeremy Siek
sl@0
    10
//           Andrew Lumsdaine
sl@0
    11
//  See http://www.boost.org/libs/multi_array for documentation.
sl@0
    12
sl@0
    13
#ifndef BOOST_MULTI_ARRAY_RG071801_HPP
sl@0
    14
#define BOOST_MULTI_ARRAY_RG071801_HPP
sl@0
    15
sl@0
    16
//
sl@0
    17
// multi_array.hpp - contains the multi_array class template
sl@0
    18
// declaration and definition
sl@0
    19
//
sl@0
    20
sl@0
    21
#include "boost/multi_array/base.hpp"
sl@0
    22
#include "boost/multi_array/collection_concept.hpp"
sl@0
    23
#include "boost/multi_array/copy_array.hpp"
sl@0
    24
#include "boost/multi_array/iterator.hpp"
sl@0
    25
#include "boost/multi_array/subarray.hpp"
sl@0
    26
#include "boost/multi_array/multi_array_ref.hpp"
sl@0
    27
#include "boost/multi_array/algorithm.hpp"
sl@0
    28
#include "boost/array.hpp"
sl@0
    29
#include "boost/mpl/if.hpp"
sl@0
    30
#include "boost/type_traits.hpp"
sl@0
    31
#include <algorithm>
sl@0
    32
#include <cstddef>
sl@0
    33
#include <functional>
sl@0
    34
#include <numeric>
sl@0
    35
#include <vector>
sl@0
    36
sl@0
    37
sl@0
    38
sl@0
    39
namespace boost {
sl@0
    40
  namespace detail {
sl@0
    41
    namespace multi_array {
sl@0
    42
sl@0
    43
      struct populate_index_ranges {
sl@0
    44
        multi_array_types::index_range
sl@0
    45
        // RG: underscore on extent_ to stifle strange MSVC warning.
sl@0
    46
        operator()(multi_array_types::index base,
sl@0
    47
                   multi_array_types::size_type extent_) {
sl@0
    48
          return multi_array_types::index_range(base,base+extent_);
sl@0
    49
        }
sl@0
    50
      };
sl@0
    51
sl@0
    52
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
sl@0
    53
//
sl@0
    54
// Compilers that don't support partial ordering may need help to
sl@0
    55
// disambiguate multi_array's templated constructors.  Even vc6/7 are
sl@0
    56
// capable of some limited SFINAE, so we take the most-general version
sl@0
    57
// out of the overload set with disable_multi_array_impl.
sl@0
    58
//
sl@0
    59
template <typename T, std::size_t NumDims, typename TPtr>
sl@0
    60
char is_multi_array_impl_help(const_multi_array_view<T,NumDims,TPtr>&);
sl@0
    61
template <typename T, std::size_t NumDims, typename TPtr>
sl@0
    62
char is_multi_array_impl_help(const_sub_array<T,NumDims,TPtr>&);
sl@0
    63
template <typename T, std::size_t NumDims, typename TPtr>
sl@0
    64
char is_multi_array_impl_help(const_multi_array_ref<T,NumDims,TPtr>&);
sl@0
    65
sl@0
    66
char ( &is_multi_array_impl_help(...) )[2];
sl@0
    67
sl@0
    68
template <class T>
sl@0
    69
struct is_multi_array_impl
sl@0
    70
{
sl@0
    71
    static T x;
sl@0
    72
    BOOST_STATIC_CONSTANT(bool, value = sizeof((is_multi_array_impl_help)(x)) == 1);
sl@0
    73
sl@0
    74
  typedef mpl::bool_<value> type;
sl@0
    75
};
sl@0
    76
sl@0
    77
template <bool multi_array = false>
sl@0
    78
struct disable_multi_array_impl_impl
sl@0
    79
{
sl@0
    80
    typedef int type;
sl@0
    81
};
sl@0
    82
sl@0
    83
template <>
sl@0
    84
struct disable_multi_array_impl_impl<true>
sl@0
    85
{
sl@0
    86
    // forming a pointer to a reference triggers SFINAE
sl@0
    87
    typedef int& type; 
sl@0
    88
};
sl@0
    89
sl@0
    90
sl@0
    91
template <class T>
sl@0
    92
struct disable_multi_array_impl :
sl@0
    93
  disable_multi_array_impl_impl<is_multi_array_impl<T>::value>
sl@0
    94
{ };
sl@0
    95
sl@0
    96
sl@0
    97
template <>
sl@0
    98
struct disable_multi_array_impl<int>
sl@0
    99
{
sl@0
   100
  typedef int type;
sl@0
   101
};
sl@0
   102
sl@0
   103
sl@0
   104
#endif
sl@0
   105
sl@0
   106
    } //namespace multi_array
sl@0
   107
  } // namespace detail
sl@0
   108
sl@0
   109
template<typename T, std::size_t NumDims,
sl@0
   110
  typename Allocator>
sl@0
   111
class multi_array :
sl@0
   112
  public multi_array_ref<T,NumDims>
sl@0
   113
{
sl@0
   114
  typedef multi_array_ref<T,NumDims> super_type;
sl@0
   115
public:
sl@0
   116
  typedef typename super_type::value_type value_type;
sl@0
   117
  typedef typename super_type::reference reference;
sl@0
   118
  typedef typename super_type::const_reference const_reference;
sl@0
   119
  typedef typename super_type::iterator iterator;
sl@0
   120
  typedef typename super_type::const_iterator const_iterator;
sl@0
   121
  typedef typename super_type::reverse_iterator reverse_iterator;
sl@0
   122
  typedef typename super_type::const_reverse_iterator const_reverse_iterator;
sl@0
   123
  typedef typename super_type::element element;
sl@0
   124
  typedef typename super_type::size_type size_type;
sl@0
   125
  typedef typename super_type::difference_type difference_type;
sl@0
   126
  typedef typename super_type::index index;
sl@0
   127
  typedef typename super_type::extent_range extent_range;
sl@0
   128
sl@0
   129
sl@0
   130
  template <std::size_t NDims>
sl@0
   131
  struct const_array_view {
sl@0
   132
    typedef boost::detail::multi_array::const_multi_array_view<T,NDims> type;
sl@0
   133
  };
sl@0
   134
sl@0
   135
  template <std::size_t NDims>
sl@0
   136
  struct array_view {
sl@0
   137
    typedef boost::detail::multi_array::multi_array_view<T,NDims> type;
sl@0
   138
  };
sl@0
   139
sl@0
   140
  explicit multi_array() :
sl@0
   141
    super_type((T*)initial_base_,c_storage_order(),
sl@0
   142
               /*index_bases=*/0, /*extents=*/0) {
sl@0
   143
    allocate_space(); 
sl@0
   144
  }
sl@0
   145
sl@0
   146
  template <class ExtentList>
sl@0
   147
  explicit multi_array(
sl@0
   148
      ExtentList const& extents
sl@0
   149
#ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
sl@0
   150
      , typename mpl::if_<
sl@0
   151
      detail::multi_array::is_multi_array_impl<ExtentList>,
sl@0
   152
      int&,int>::type* = 0
sl@0
   153
#endif
sl@0
   154
      ) :
sl@0
   155
    super_type((T*)initial_base_,extents) {
sl@0
   156
    boost::function_requires<
sl@0
   157
      detail::multi_array::CollectionConcept<ExtentList> >();
sl@0
   158
    allocate_space();
sl@0
   159
  }
sl@0
   160
sl@0
   161
    
sl@0
   162
  template <class ExtentList>
sl@0
   163
  explicit multi_array(ExtentList const& extents,
sl@0
   164
                       const general_storage_order<NumDims>& so) :
sl@0
   165
    super_type((T*)initial_base_,extents,so) {
sl@0
   166
    boost::function_requires<
sl@0
   167
      detail::multi_array::CollectionConcept<ExtentList> >();
sl@0
   168
    allocate_space();
sl@0
   169
  }
sl@0
   170
sl@0
   171
  template <class ExtentList>
sl@0
   172
  explicit multi_array(ExtentList const& extents,
sl@0
   173
                       const general_storage_order<NumDims>& so,
sl@0
   174
                       Allocator const& alloc) :
sl@0
   175
    super_type((T*)initial_base_,extents,so), allocator_(alloc) {
sl@0
   176
    boost::function_requires<
sl@0
   177
      detail::multi_array::CollectionConcept<ExtentList> >();
sl@0
   178
    allocate_space();
sl@0
   179
  }
sl@0
   180
sl@0
   181
sl@0
   182
  explicit multi_array(const detail::multi_array
sl@0
   183
                       ::extent_gen<NumDims>& ranges) :
sl@0
   184
    super_type((T*)initial_base_,ranges) {
sl@0
   185
sl@0
   186
    allocate_space();
sl@0
   187
  }
sl@0
   188
sl@0
   189
sl@0
   190
  explicit multi_array(const detail::multi_array
sl@0
   191
                       ::extent_gen<NumDims>& ranges,
sl@0
   192
                       const general_storage_order<NumDims>& so) :
sl@0
   193
    super_type((T*)initial_base_,ranges,so) {
sl@0
   194
sl@0
   195
    allocate_space();
sl@0
   196
  }
sl@0
   197
sl@0
   198
sl@0
   199
  explicit multi_array(const detail::multi_array
sl@0
   200
                       ::extent_gen<NumDims>& ranges,
sl@0
   201
                       const general_storage_order<NumDims>& so,
sl@0
   202
                       Allocator const& alloc) :
sl@0
   203
    super_type((T*)initial_base_,ranges,so), allocator_(alloc) {
sl@0
   204
sl@0
   205
    allocate_space();
sl@0
   206
  }
sl@0
   207
sl@0
   208
  multi_array(const multi_array& rhs) :
sl@0
   209
  super_type(rhs), allocator_(rhs.allocator_) {
sl@0
   210
    allocate_space();
sl@0
   211
    boost::detail::multi_array::copy_n(rhs.base_,rhs.num_elements(),base_);
sl@0
   212
  }
sl@0
   213
sl@0
   214
sl@0
   215
  //
sl@0
   216
  // A multi_array is constructible from any multi_array_ref, subarray, or
sl@0
   217
  // array_view object.  The following constructors ensure that.
sl@0
   218
  //
sl@0
   219
sl@0
   220
  // Due to limited support for partial template ordering, 
sl@0
   221
  // MSVC 6&7 confuse the following with the most basic ExtentList 
sl@0
   222
  // constructor.
sl@0
   223
#ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
sl@0
   224
  template <typename OPtr>
sl@0
   225
  multi_array(const const_multi_array_ref<T,NumDims,OPtr>& rhs,
sl@0
   226
              const general_storage_order<NumDims>& so = c_storage_order())
sl@0
   227
    : super_type(0,so,rhs.index_bases(),rhs.shape()) 
sl@0
   228
  {
sl@0
   229
    allocate_space();
sl@0
   230
    // Warning! storage order may change, hence the following copy technique.
sl@0
   231
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   232
  }
sl@0
   233
sl@0
   234
  template <typename OPtr>
sl@0
   235
  multi_array(const detail::multi_array::
sl@0
   236
              const_sub_array<T,NumDims,OPtr>& rhs,
sl@0
   237
              const general_storage_order<NumDims>& so = c_storage_order())
sl@0
   238
    : super_type(0,so,rhs.index_bases(),rhs.shape()) 
sl@0
   239
  {
sl@0
   240
    allocate_space();
sl@0
   241
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   242
  }
sl@0
   243
sl@0
   244
sl@0
   245
  template <typename OPtr>
sl@0
   246
  multi_array(const detail::multi_array::
sl@0
   247
              const_multi_array_view<T,NumDims,OPtr>& rhs,
sl@0
   248
              const general_storage_order<NumDims>& so = c_storage_order())
sl@0
   249
    : super_type(0,so,rhs.index_bases(),rhs.shape()) 
sl@0
   250
  {
sl@0
   251
    allocate_space();
sl@0
   252
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   253
  }
sl@0
   254
sl@0
   255
#else // BOOST_NO_FUNCTION_TEMPLATE_ORDERING
sl@0
   256
  // More limited support for MSVC
sl@0
   257
sl@0
   258
sl@0
   259
  multi_array(const const_multi_array_ref<T,NumDims>& rhs)
sl@0
   260
    : super_type(0,c_storage_order(),rhs.index_bases(),rhs.shape()) 
sl@0
   261
  {
sl@0
   262
    allocate_space();
sl@0
   263
    // Warning! storage order may change, hence the following copy technique.
sl@0
   264
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   265
  }
sl@0
   266
sl@0
   267
  multi_array(const const_multi_array_ref<T,NumDims>& rhs,
sl@0
   268
              const general_storage_order<NumDims>& so)
sl@0
   269
    : super_type(0,so,rhs.index_bases(),rhs.shape()) 
sl@0
   270
  {
sl@0
   271
    allocate_space();
sl@0
   272
    // Warning! storage order may change, hence the following copy technique.
sl@0
   273
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   274
  }
sl@0
   275
sl@0
   276
  multi_array(const detail::multi_array::
sl@0
   277
              const_sub_array<T,NumDims>& rhs)
sl@0
   278
    : super_type(0,c_storage_order(),rhs.index_bases(),rhs.shape()) 
sl@0
   279
  {
sl@0
   280
    allocate_space();
sl@0
   281
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   282
  }
sl@0
   283
sl@0
   284
  multi_array(const detail::multi_array::
sl@0
   285
              const_sub_array<T,NumDims>& rhs,
sl@0
   286
              const general_storage_order<NumDims>& so)
sl@0
   287
    : super_type(0,so,rhs.index_bases(),rhs.shape()) 
sl@0
   288
  {
sl@0
   289
    allocate_space();
sl@0
   290
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   291
  }
sl@0
   292
sl@0
   293
sl@0
   294
  multi_array(const detail::multi_array::
sl@0
   295
              const_multi_array_view<T,NumDims>& rhs)
sl@0
   296
    : super_type(0,c_storage_order(),rhs.index_bases(),rhs.shape()) 
sl@0
   297
  {
sl@0
   298
    allocate_space();
sl@0
   299
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   300
  }
sl@0
   301
sl@0
   302
  multi_array(const detail::multi_array::
sl@0
   303
              const_multi_array_view<T,NumDims>& rhs,
sl@0
   304
              const general_storage_order<NumDims>& so)
sl@0
   305
    : super_type(0,so,rhs.index_bases(),rhs.shape()) 
sl@0
   306
  {
sl@0
   307
    allocate_space();
sl@0
   308
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   309
  }
sl@0
   310
sl@0
   311
#endif // !BOOST_NO_FUNCTION_TEMPLATE_ORDERING
sl@0
   312
sl@0
   313
  // Thes constructors are necessary because of more exact template matches.
sl@0
   314
  multi_array(const multi_array_ref<T,NumDims>& rhs)
sl@0
   315
    : super_type(0,c_storage_order(),rhs.index_bases(),rhs.shape()) 
sl@0
   316
  {
sl@0
   317
    allocate_space();
sl@0
   318
    // Warning! storage order may change, hence the following copy technique.
sl@0
   319
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   320
  }
sl@0
   321
sl@0
   322
  multi_array(const multi_array_ref<T,NumDims>& rhs,
sl@0
   323
              const general_storage_order<NumDims>& so)
sl@0
   324
    : super_type(0,so,rhs.index_bases(),rhs.shape()) 
sl@0
   325
  {
sl@0
   326
    allocate_space();
sl@0
   327
    // Warning! storage order may change, hence the following copy technique.
sl@0
   328
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   329
  }
sl@0
   330
sl@0
   331
sl@0
   332
  multi_array(const detail::multi_array::
sl@0
   333
              sub_array<T,NumDims>& rhs)
sl@0
   334
    : super_type(0,c_storage_order(),rhs.index_bases(),rhs.shape()) 
sl@0
   335
  {
sl@0
   336
    allocate_space();
sl@0
   337
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   338
  }
sl@0
   339
sl@0
   340
  multi_array(const detail::multi_array::
sl@0
   341
              sub_array<T,NumDims>& rhs,
sl@0
   342
              const general_storage_order<NumDims>& so)
sl@0
   343
    : super_type(0,so,rhs.index_bases(),rhs.shape()) 
sl@0
   344
  {
sl@0
   345
    allocate_space();
sl@0
   346
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   347
  }
sl@0
   348
sl@0
   349
sl@0
   350
  multi_array(const detail::multi_array::
sl@0
   351
              multi_array_view<T,NumDims>& rhs)
sl@0
   352
    : super_type(0,c_storage_order(),rhs.index_bases(),rhs.shape()) 
sl@0
   353
  {
sl@0
   354
    allocate_space();
sl@0
   355
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   356
  }
sl@0
   357
    
sl@0
   358
  multi_array(const detail::multi_array::
sl@0
   359
              multi_array_view<T,NumDims>& rhs,
sl@0
   360
              const general_storage_order<NumDims>& so)
sl@0
   361
    : super_type(0,so,rhs.index_bases(),rhs.shape()) 
sl@0
   362
  {
sl@0
   363
    allocate_space();
sl@0
   364
    std::copy(rhs.begin(),rhs.end(),this->begin());
sl@0
   365
  }
sl@0
   366
    
sl@0
   367
  // Since assignment is a deep copy, multi_array_ref
sl@0
   368
  // contains all the necessary code.
sl@0
   369
  template <typename ConstMultiArray>
sl@0
   370
  multi_array& operator=(const ConstMultiArray& other) {
sl@0
   371
    super_type::operator=(other);
sl@0
   372
    return *this;
sl@0
   373
  }
sl@0
   374
sl@0
   375
  multi_array& operator=(const multi_array& other) {
sl@0
   376
    if (&other != this) {
sl@0
   377
      super_type::operator=(other);
sl@0
   378
    }
sl@0
   379
    return *this;
sl@0
   380
  }
sl@0
   381
sl@0
   382
sl@0
   383
  template <typename ExtentList>
sl@0
   384
  multi_array& resize(const ExtentList& extents) {
sl@0
   385
    boost::function_requires<
sl@0
   386
      detail::multi_array::CollectionConcept<ExtentList> >();
sl@0
   387
sl@0
   388
    typedef detail::multi_array::extent_gen<NumDims> gen_type;
sl@0
   389
    gen_type ranges;
sl@0
   390
sl@0
   391
    for (int i=0; i != NumDims; ++i) {
sl@0
   392
      typedef typename gen_type::range range_type;
sl@0
   393
      ranges.ranges_[i] = range_type(0,extents[i]);
sl@0
   394
    }
sl@0
   395
    
sl@0
   396
    return this->resize(ranges);
sl@0
   397
  }
sl@0
   398
sl@0
   399
sl@0
   400
sl@0
   401
  multi_array& resize(const detail::multi_array
sl@0
   402
                      ::extent_gen<NumDims>& ranges) {
sl@0
   403
sl@0
   404
sl@0
   405
    // build a multi_array with the specs given
sl@0
   406
    multi_array new_array(ranges,this->storage_order());
sl@0
   407
sl@0
   408
sl@0
   409
    // build a view of tmp with the minimum extents
sl@0
   410
sl@0
   411
    // Get the minimum extents of the arrays.
sl@0
   412
    boost::array<size_type,NumDims> min_extents;
sl@0
   413
sl@0
   414
    const size_type& (*min)(const size_type&, const size_type&) =
sl@0
   415
      std::min;
sl@0
   416
    std::transform(new_array.extent_list_.begin(),new_array.extent_list_.end(),
sl@0
   417
                   this->extent_list_.begin(),
sl@0
   418
                   min_extents.begin(),
sl@0
   419
                   min);
sl@0
   420
sl@0
   421
sl@0
   422
    // typedef boost::array<index,NumDims> index_list;
sl@0
   423
    // Build index_gen objects to create views with the same shape
sl@0
   424
sl@0
   425
    // these need to be separate to handle non-zero index bases
sl@0
   426
    typedef detail::multi_array::index_gen<NumDims,NumDims> index_gen;
sl@0
   427
    index_gen old_idxes;
sl@0
   428
    index_gen new_idxes;
sl@0
   429
sl@0
   430
    std::transform(new_array.index_base_list_.begin(),
sl@0
   431
                   new_array.index_base_list_.end(),
sl@0
   432
                   min_extents.begin(),old_idxes.ranges_.begin(),
sl@0
   433
                   detail::multi_array::populate_index_ranges());
sl@0
   434
sl@0
   435
    std::transform(this->index_base_list_.begin(),
sl@0
   436
                   this->index_base_list_.end(),
sl@0
   437
                   min_extents.begin(),new_idxes.ranges_.begin(),
sl@0
   438
                   detail::multi_array::populate_index_ranges());
sl@0
   439
sl@0
   440
    // Build same-shape views of the two arrays
sl@0
   441
    typename
sl@0
   442
      multi_array::BOOST_NESTED_TEMPLATE array_view<NumDims>::type view_old = (*this)[old_idxes];
sl@0
   443
    typename
sl@0
   444
      multi_array::BOOST_NESTED_TEMPLATE array_view<NumDims>::type view_new = new_array[new_idxes];
sl@0
   445
sl@0
   446
    // Set the right portion of the new array
sl@0
   447
    view_new = view_old;
sl@0
   448
sl@0
   449
    using std::swap;
sl@0
   450
    // Swap the internals of these arrays.
sl@0
   451
    swap(this->super_type::base_,new_array.super_type::base_);
sl@0
   452
    swap(this->storage_,new_array.storage_);
sl@0
   453
    swap(this->extent_list_,new_array.extent_list_);
sl@0
   454
    swap(this->stride_list_,new_array.stride_list_);
sl@0
   455
    swap(this->index_base_list_,new_array.index_base_list_);
sl@0
   456
    swap(this->origin_offset_,new_array.origin_offset_);
sl@0
   457
    swap(this->directional_offset_,new_array.directional_offset_);
sl@0
   458
    swap(this->num_elements_,new_array.num_elements_);
sl@0
   459
    swap(this->allocator_,new_array.allocator_);
sl@0
   460
    swap(this->base_,new_array.base_);
sl@0
   461
    swap(this->allocated_elements_,new_array.allocated_elements_);
sl@0
   462
sl@0
   463
    return *this;
sl@0
   464
  }
sl@0
   465
sl@0
   466
sl@0
   467
  ~multi_array() {
sl@0
   468
    deallocate_space();
sl@0
   469
  }
sl@0
   470
sl@0
   471
private:
sl@0
   472
  void allocate_space() {
sl@0
   473
    typename Allocator::const_pointer no_hint=0;
sl@0
   474
    base_ = allocator_.allocate(this->num_elements(),no_hint);
sl@0
   475
    this->set_base_ptr(base_);
sl@0
   476
    allocated_elements_ = this->num_elements();
sl@0
   477
    std::uninitialized_fill_n(base_,allocated_elements_,T());
sl@0
   478
  }
sl@0
   479
sl@0
   480
  void deallocate_space() {
sl@0
   481
    if(base_) {
sl@0
   482
      for(T* i = base_; i != base_+allocated_elements_; ++i)
sl@0
   483
        allocator_.destroy(i);
sl@0
   484
      allocator_.deallocate(base_,allocated_elements_);
sl@0
   485
    }
sl@0
   486
  }
sl@0
   487
sl@0
   488
  typedef boost::array<size_type,NumDims> size_list;
sl@0
   489
  typedef boost::array<index,NumDims> index_list;
sl@0
   490
sl@0
   491
  Allocator allocator_;
sl@0
   492
  T* base_;
sl@0
   493
  size_type allocated_elements_;
sl@0
   494
  enum {initial_base_ = 0};
sl@0
   495
};
sl@0
   496
sl@0
   497
} // namespace boost
sl@0
   498
sl@0
   499
#endif // BOOST_MULTI_ARRAY_RG071801_HPP