📄 vector_proxy.hpp
字号:
//
// Copyright (c) 2000-2002
// Joerg Walter, Mathias Koch
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted without fee,
// provided that the above copyright notice appear in all copies and
// that both that copyright notice and this permission notice appear
// in supporting documentation. The authors make no representations
// about the suitability of this software for any purpose.
// It is provided "as is" without express or implied warranty.
//
// The authors gratefully acknowledge the support of
// GeNeSys mbH & Co. KG in producing this work.
//
#ifndef BOOST_UBLAS_VECTOR_PROXY_H
#define BOOST_UBLAS_VECTOR_PROXY_H
#include <boost/numeric/ublas/config.hpp>
#include <boost/numeric/ublas/vector_expression.hpp>
// Iterators based on ideas of Jeremy Siek
namespace boost { namespace numeric { namespace ublas {
// Vector based range class
template<class V>
class vector_range:
public vector_expression<vector_range<V> > {
public:
#ifndef BOOST_UBLAS_NO_PROXY_SHORTCUTS
BOOST_UBLAS_USING vector_expression<vector_range<V> >::operator ();
#endif
typedef const V const_vector_type;
typedef V vector_type;
typedef typename V::simd_category simd_category;
typedef typename V::size_type size_type;
typedef typename V::difference_type difference_type;
typedef typename V::value_type value_type;
#ifndef BOOST_UBLAS_CT_PROXY_BASE_TYPEDEFS
typedef typename V::const_reference const_reference;
typedef typename V::reference reference;
typedef typename V::const_pointer const_pointer;
typedef typename V::pointer pointer;
#else
typedef typename V::const_reference const_reference;
typedef typename boost::mpl::if_c<boost::is_const<V>::value,
typename V::const_reference,
typename V::reference>::type reference;
typedef typename V::const_pointer const_pointer;
typedef typename boost::mpl::if_c<boost::is_const<V>::value,
typename V::const_pointer,
typename V::pointer>::type pointer;
#endif
#ifndef BOOST_UBLAS_CT_PROXY_CLOSURE_TYPEDEFS
typedef typename V::closure_type vector_closure_type;
#else
typedef typename boost::mpl::if_c<boost::is_const<V>::value,
typename V::const_closure_type,
typename V::closure_type>::type vector_closure_type;
#endif
typedef const vector_range<vector_type> const_self_type;
typedef vector_range<vector_type> self_type;
typedef const_self_type const_closure_type;
typedef self_type closure_type;
#ifndef BOOST_UBLAS_CT_PROXY_BASE_TYPEDEFS
typedef typename V::const_iterator const_iterator_type;
typedef typename V::iterator iterator_type;
#else
typedef typename V::const_iterator const_iterator_type;
typedef typename boost::mpl::if_c<boost::is_const<V>::value,
typename V::const_iterator,
typename V::iterator>::type iterator_type;
#endif
typedef typename storage_restrict_traits<typename V::storage_category,
dense_proxy_tag>::storage_category storage_category;
// Construction and destruction
BOOST_UBLAS_INLINE
vector_range ():
data_ (nil_), r_ () {}
BOOST_UBLAS_INLINE
vector_range (vector_type &data, const range &r):
data_ (data), r_ (r.preprocess (data.size ())) {
// Early checking of preconditions.
BOOST_UBLAS_CHECK (r_.start () <= data_.size () &&
r_.start () + r_.size () <= data_.size (), bad_index ());
}
BOOST_UBLAS_INLINE
vector_range (const vector_closure_type &data, const range &r, int):
data_ (data), r_ (r.preprocess (data.size ())) {
// Early checking of preconditions.
BOOST_UBLAS_CHECK (r_.start () <= data_.size () &&
r_.start () + r_.size () <= data_.size (), bad_index ());
}
// Accessors
BOOST_UBLAS_INLINE
size_type start () const {
return r_.start ();
}
BOOST_UBLAS_INLINE
size_type size () const {
return r_.size ();
}
BOOST_UBLAS_INLINE
const vector_closure_type &data () const {
return data_;
}
BOOST_UBLAS_INLINE
vector_closure_type &data () {
return data_;
}
#ifdef BOOST_UBLAS_DEPRECATED
// Resetting
BOOST_UBLAS_INLINE
void reset (vector_type &data) {
// data_ = data;
data_.reset (data);
}
BOOST_UBLAS_INLINE
void reset (vector_type &data, const range &r) {
// data_ = data;
data_.reset (data);
r_ = r;
}
#endif
// Element access
#ifndef BOOST_UBLAS_PROXY_CONST_MEMBER
BOOST_UBLAS_INLINE
const_reference operator () (size_type i) const {
return data () (r_ (i));
}
BOOST_UBLAS_INLINE
reference operator () (size_type i) {
return data () (r_ (i));
}
BOOST_UBLAS_INLINE
const_reference operator [] (size_type i) const {
return (*this) (i);
}
BOOST_UBLAS_INLINE
reference operator [] (size_type i) {
return (*this) (i);
}
#else
BOOST_UBLAS_INLINE
reference operator () (size_type i) const {
return data () (r_ (i));
}
BOOST_UBLAS_INLINE
reference operator [] (size_type i) const {
return (*this) (i);
}
#endif
BOOST_UBLAS_INLINE
vector_range<vector_type> project (const range &r) const {
return vector_range<vector_type> (data_, r_.compose (r.preprocess (data_.size ())), 0);
}
// Assignment
BOOST_UBLAS_INLINE
vector_range &operator = (const vector_range &vr) {
// FIXME: the ranges could be differently sized.
// std::copy (vr.begin (), vr.end (), begin ());
vector_assign (scalar_assign<reference, value_type> (), *this, vector<value_type> (vr));
return *this;
}
BOOST_UBLAS_INLINE
vector_range &assign_temporary (vector_range &vr) {
// FIXME: this is suboptimal.
// return *this = vr;
vector_assign (scalar_assign<reference, value_type> (), *this, vr);
return *this;
}
template<class AE>
BOOST_UBLAS_INLINE
vector_range &operator = (const vector_expression<AE> &ae) {
vector_assign (scalar_assign<reference, value_type> (), *this, vector<value_type> (ae));
return *this;
}
template<class AE>
BOOST_UBLAS_INLINE
vector_range &assign (const vector_expression<AE> &ae) {
vector_assign (scalar_assign<reference, BOOST_UBLAS_TYPENAME AE::value_type> (), *this, ae);
return *this;
}
template<class AE>
BOOST_UBLAS_INLINE
vector_range &operator += (const vector_expression<AE> &ae) {
vector_assign (scalar_assign<reference, value_type> (), *this, vector<value_type> (*this + ae));
return *this;
}
template<class AE>
BOOST_UBLAS_INLINE
vector_range &plus_assign (const vector_expression<AE> &ae) {
vector_assign (scalar_plus_assign<reference, BOOST_UBLAS_TYPENAME AE::value_type> (), *this, ae);
return *this;
}
template<class AE>
BOOST_UBLAS_INLINE
vector_range &operator -= (const vector_expression<AE> &ae) {
vector_assign (scalar_assign<reference, value_type> (), *this, vector<value_type> (*this - ae));
return *this;
}
template<class AE>
BOOST_UBLAS_INLINE
vector_range &minus_assign (const vector_expression<AE> &ae) {
vector_assign (scalar_minus_assign<reference, BOOST_UBLAS_TYPENAME AE::value_type> (), *this, ae);
return *this;
}
template<class AT>
BOOST_UBLAS_INLINE
vector_range &operator *= (const AT &at) {
vector_assign_scalar (scalar_multiplies_assign<reference, AT> (), *this, at);
return *this;
}
template<class AT>
BOOST_UBLAS_INLINE
vector_range &operator /= (const AT &at) {
vector_assign_scalar (scalar_divides_assign<reference, AT> (), *this, at);
return *this;
}
// Comparison
BOOST_UBLAS_INLINE
bool operator == (const vector_range &vr) const {
return (*this).data () == vr.data () && r_ == vr.r_;
}
// Swapping
BOOST_UBLAS_INLINE
void swap (vector_range vr) {
// Too unusual semantic.
// BOOST_UBLAS_CHECK (this != &vr, external_logic ());
if (this != &vr) {
BOOST_UBLAS_CHECK (size () == vr.size (), bad_size ());
// Sparse ranges may be nonconformant now.
// std::swap_ranges (begin (), end (), vr.begin ());
vector_swap (scalar_swap<reference, reference> (), *this, vr);
}
}
#ifndef BOOST_UBLAS_NO_MEMBER_FRIENDS
BOOST_UBLAS_INLINE
friend void swap (vector_range vr1, vector_range vr2) {
vr1.swap (vr2);
}
#endif
#ifdef BOOST_UBLAS_USE_INDEXED_ITERATOR
typedef indexed_iterator<vector_range<vector_type>,
BOOST_UBLAS_TYPENAME iterator_type::iterator_category> iterator;
typedef indexed_const_iterator<vector_range<vector_type>,
BOOST_UBLAS_TYPENAME const_iterator_type::iterator_category> const_iterator;
#else
class const_iterator;
class iterator;
#endif
// Element lookup
BOOST_UBLAS_INLINE
const_iterator find (size_type i) const {
const_iterator_type it (data ().find (start () + i));
#ifdef BOOST_UBLAS_USE_INDEXED_ITERATOR
return const_iterator (*this, it.index ());
#else
return const_iterator (*this, it);
#endif
}
BOOST_UBLAS_INLINE
iterator find (size_type i) {
iterator_type it (data ().find (start () + i));
#ifdef BOOST_UBLAS_USE_INDEXED_ITERATOR
return iterator (*this, it.index ());
#else
return iterator (*this, it);
#endif
}
// Iterators simply are pointers.
#ifndef BOOST_UBLAS_USE_INDEXED_ITERATOR
class const_iterator:
public container_const_reference<vector_range>,
#ifdef BOOST_UBLAS_USE_ITERATOR_BASE_TRAITS
public iterator_base_traits<typename const_iterator_type::iterator_category>::template
iterator_base<const_iterator, value_type>::type {
#else
#ifndef BOOST_MSVC
public random_access_iterator_base<typename const_iterator_type::iterator_category,
const_iterator, value_type> {
#else
public random_access_iterator_base<typename V::const_iterator::iterator_category,
const_iterator, value_type> {
#endif
#endif
public:
typedef typename const_iterator_type::iterator_category iterator_category;
typedef typename const_iterator_type::difference_type difference_type;
typedef typename const_iterator_type::value_type value_type;
typedef typename const_iterator_type::reference reference;
typedef typename const_iterator_type::pointer pointer;
// Construction and destruction
BOOST_UBLAS_INLINE
const_iterator ():
container_const_reference<self_type> (), it_ () {}
BOOST_UBLAS_INLINE
const_iterator (const self_type &vr, const const_iterator_type &it):
container_const_reference<self_type> (vr), it_ (it) {}
#ifndef BOOST_UBLAS_QUALIFIED_TYPENAME
BOOST_UBLAS_INLINE
const_iterator (const iterator &it):
container_const_reference<self_type> (it ()), it_ (it.it_) {}
#else
BOOST_UBLAS_INLINE
const_iterator (const typename self_type::iterator &it):
container_const_reference<self_type> (it ()), it_ (it.it_) {}
#endif
// Arithmetic
BOOST_UBLAS_INLINE
const_iterator &operator ++ () {
++ it_;
return *this;
}
BOOST_UBLAS_INLINE
const_iterator &operator -- () {
-- it_;
return *this;
}
BOOST_UBLAS_INLINE
const_iterator &operator += (difference_type n) {
it_ += n;
return *this;
}
BOOST_UBLAS_INLINE
const_iterator &operator -= (difference_type n) {
it_ -= n;
return *this;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -