multi_array_ref.hpp
来自「CGAL is a collaborative effort of severa」· HPP 代码 · 共 623 行 · 第 1/2 页
HPP
623 行
// 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_REF_RG071801_HPP#define BOOST_MULTI_ARRAY_REF_RG071801_HPP//// multi_array_ref.hpp - code for creating "views" of array data.//#include "boost/multi_array/base.hpp"#include "boost/multi_array/collection_concept.hpp"#include "boost/multi_array/concept_checks.hpp"#include "boost/multi_array/iterator.hpp"#include "boost/multi_array/storage_order.hpp"#include "boost/multi_array/subarray.hpp"#include "boost/multi_array/view.hpp"#include "boost/multi_array/algorithm.hpp"#include "boost/array.hpp"#include "boost/concept_check.hpp"#include "boost/functional.hpp"#include "boost/limits.hpp"#include <algorithm>#include <cassert>#include <cstddef>#include <functional>#include <numeric>namespace boost {template <typename T, std::size_t NumDims, typename TPtr = const T*>class const_multi_array_ref : public detail::multi_array::multi_array_impl_base<T,NumDims>{ typedef detail::multi_array::multi_array_impl_base<T,NumDims> super_type;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_reverse_iterator const_reverse_iterator; typedef typename super_type::element element; typedef typename super_type::size_type size_type; typedef typename super_type::difference_type difference_type; typedef typename super_type::index index; typedef typename super_type::extent_range extent_range; typedef general_storage_order<NumDims> storage_order_type; // template typedefs template <std::size_t NDims> struct const_array_view { typedef boost::detail::multi_array::const_multi_array_view<T,NDims> type; }; template <std::size_t NDims> struct array_view { typedef boost::detail::multi_array::multi_array_view<T,NDims> type; };#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS // make const_multi_array_ref a friend of itself template <typename,std::size_t,typename> friend class const_multi_array_ref;#endif // This ensures that const_multi_array_ref types with different TPtr // types can convert to each other template <typename OPtr> const_multi_array_ref(const const_multi_array_ref<T,NumDims,OPtr>& other) : base_(other.base_), storage_(other.storage_), extent_list_(other.extent_list_), stride_list_(other.stride_list_), index_base_list_(other.index_base_list_), origin_offset_(other.origin_offset_), directional_offset_(other.directional_offset_), num_elements_(other.num_elements_) { } template <typename ExtentList> explicit const_multi_array_ref(TPtr base, const ExtentList& extents) : base_(base), storage_(c_storage_order()) { boost::function_requires< detail::multi_array::CollectionConcept<ExtentList> >(); index_base_list_.assign(0); init_multi_array_ref(extents.begin()); } template <typename ExtentList> explicit const_multi_array_ref(TPtr base, const ExtentList& extents, const general_storage_order<NumDims>& so) : base_(base), storage_(so) { boost::function_requires< detail::multi_array::CollectionConcept<ExtentList> >(); index_base_list_.assign(0); init_multi_array_ref(extents.begin()); } explicit const_multi_array_ref(TPtr base, const detail::multi_array:: extent_gen<NumDims>& ranges) : base_(base), storage_(c_storage_order()) { init_from_extent_gen(ranges); } explicit const_multi_array_ref(TPtr base, const detail::multi_array:: extent_gen<NumDims>& ranges, const general_storage_order<NumDims>& so) : base_(base), storage_(so) { init_from_extent_gen(ranges); } template <class InputIterator> void assign(InputIterator begin, InputIterator end) { boost::function_requires<InputIteratorConcept<InputIterator> >(); InputIterator in_iter = begin; T* out_iter = base_; std::size_t copy_count=0; while (in_iter != end && copy_count < num_elements_) { *out_iter++ = *in_iter++; copy_count++; } } template <class BaseList> void reindex(const BaseList& values) { boost::function_requires< detail::multi_array::CollectionConcept<BaseList> >(); boost::copy_n(values.begin(),num_dimensions(),index_base_list_.begin()); origin_offset_ = this->calculate_origin_offset(stride_list_,extent_list_, storage_,index_base_list_); } void reindex(index value) { index_base_list_.assign(value); origin_offset_ = this->calculate_origin_offset(stride_list_,extent_list_, storage_,index_base_list_); } template <typename SizeList> void reshape(const SizeList& extents) { boost::function_requires< detail::multi_array::CollectionConcept<SizeList> >(); assert(num_elements_ == std::accumulate(extents.begin(),extents.end(), size_type(1),std::multiplies<size_type>())); std::copy(extents.begin(),extents.end(),extent_list_.begin()); this->compute_strides(stride_list_,extent_list_,storage_); origin_offset_ = this->calculate_origin_offset(stride_list_,extent_list_, storage_,index_base_list_); } size_type num_dimensions() const { return NumDims; } size_type size() const { return extent_list_.front(); } // given reshaping functionality, this is the max possible size. size_type max_size() const { return num_elements(); } bool empty() const { return size() == 0; } const size_type* shape() const { return extent_list_.data(); } const index* strides() const { return stride_list_.data(); } const element* origin() const { return base_+origin_offset_; } const element* data() const { return base_; } size_type num_elements() const { return num_elements_; } const index* index_bases() const { return index_base_list_.data(); } const storage_order_type& storage_order() const { return storage_; } 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()); } // 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()); } // see generate_array_view in base.hpp#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 detail::multi_array:: index_gen<NumDims,NDims>& indices) const { 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()); } const_iterator begin() const { return const_iterator(*index_bases(),origin(), shape(),strides(),index_bases()); } const_iterator end() const { return const_iterator(*index_bases()+*shape(),origin(), shape(),strides(),index_bases()); } const_reverse_iterator rbegin() const { return const_reverse_iterator(end()); } const_reverse_iterator rend() const { return const_reverse_iterator(begin()); } template <typename OPtr> bool operator==(const const_multi_array_ref<T,NumDims,OPtr>& rhs) const { if(std::equal(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_ref<T,NumDims,OPtr>& rhs) const { return std::lexicographical_compare(begin(),end(),rhs.begin(),rhs.end()); } template <typename OPtr> bool operator!=(const const_multi_array_ref<T,NumDims,OPtr>& rhs) const { return !(*this == rhs); } template <typename OPtr> bool operator>(const const_multi_array_ref<T,NumDims,OPtr>& rhs) const { return rhs < *this; } template <typename OPtr> bool operator<=(const const_multi_array_ref<T,NumDims,OPtr>& rhs) const { return !(*this > rhs); } template <typename OPtr> bool operator>=(const const_multi_array_ref<T,NumDims,OPtr>& rhs) const { return !(*this < rhs); }#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDSprotected:#elsepublic:#endif typedef boost::array<size_type,NumDims> size_list; typedef boost::array<index,NumDims> index_list;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?