/* * Tiny Vector Matrix Library * Dense Vector Matrix Libary of Tiny size using Expression Templates * * Copyright (C) 2001 - 2003 Olaf Petzold * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * lesser General Public License for more details. * * You should have received a copy of the GNU lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * $Id: Vector.h,v 1.44 2004/09/16 09:14:18 opetzold Exp $ */ #ifndef TVMET_VECTOR_H #define TVMET_VECTOR_H #include // reverse_iterator #include #include #include #include #include namespace tvmet { /* forwards */ template class Vector; /** * \class VectorConstReference Vector.h "tvmet/Vector.h" * \brief Const value iterator for ET */ template class VectorConstReference : public TvmetBase< VectorConstReference > { public: // types typedef T value_type; typedef T* pointer; typedef const T* const_pointer; public: /** Dimensions. */ enum { Size = Sz /**< The size of the vector. */ }; public: /** Complexity counter. */ enum { ops = Size }; private: VectorConstReference(); VectorConstReference& operator=(const VectorConstReference&); public: /** Constructor. */ explicit VectorConstReference(const Vector& rhs) : m_data(rhs.data()) { } /** Constructor by a given memory pointer. */ explicit VectorConstReference(const_pointer data) : m_data(data) { } public: // access operators /** access by index. */ value_type operator()(int i) const { assert(i < Size); return m_data[i]; } public: // debugging Xpr parse tree void print_xpr(std::ostream& os, int l=0) const { os << IndentLevel(l) << "VectorConstReference[O=" << ops << "]<" << "T=" << typeid(T).name() << ">," << std::endl; } private: const_pointer _tvmet_restrict m_data; }; /** * \class Vector Vector.h "tvmet/Vector.h" * \brief Compile time fixed length vector with evaluation on compile time. */ template class Vector { public: /** Data type of the tvmet::Vector. */ typedef T value_type; /** Reference type of the tvmet::Vector data elements. */ typedef T& reference; /** const reference type of the tvmet::Vector data elements. */ typedef const T& const_reference; /** STL iterator interface. */ typedef T* iterator; /** STL const_iterator interface. */ typedef const T* const_iterator; /** STL reverse iterator interface. */ typedef std::reverse_iterator reverse_iterator; /** STL const reverse iterator interface. */ typedef std::reverse_iterator const_reverse_iterator; public: /** Dimensions. */ enum { Size = Sz /**< The size of the vector. */ }; public: /** Complexity counter. */ enum { ops_assign = Size, ops = ops_assign, use_meta = ops < TVMET_COMPLEXITY_V_ASSIGN_TRIGGER ? true : false }; public: // STL interface /** STL iterator interface. */ iterator begin() { return m_data; } /** STL iterator interface. */ iterator end() { return m_data + Size; } /** STL const_iterator interface. */ const_iterator begin() const { return m_data; } /** STL const_iterator interface. */ const_iterator end() const { return m_data + Size; } /** STL reverse iterator interface reverse begin. */ reverse_iterator rbegin() { return reverse_iterator( end() ); } /** STL const reverse iterator interface reverse begin. */ const_reverse_iterator rbegin() const { return const_reverse_iterator( end() ); } /** STL reverse iterator interface reverse end. */ reverse_iterator rend() { return reverse_iterator( begin() ); } /** STL const reverse iterator interface reverse end. */ const_reverse_iterator rend() const { return const_reverse_iterator( begin() ); } /** STL vector front element. */ value_type front() { return m_data[0]; } /** STL vector const front element. */ const_reference front() const { return m_data[0]; } /** STL vector back element. */ value_type back() { return m_data[Size-1]; } /** STL vector const back element. */ const_reference back() const { return m_data[Size-1]; } /** STL vector empty() - returns allways false. */ static bool empty() { return false; } /** The size of the vector. */ static int size() { return Size; } /** STL vector max_size() - returns allways Size. */ static int max_size() { return Size; } public: /** Default Destructor */ ~Vector() {} /** Default Constructor. The allocated memory region isn't cleared. If you want a clean use the constructor argument zero. */ explicit Vector() {} /** Copy Constructor, not explicit! */ Vector(const Vector& rhs) { *this = XprVector(rhs.const_ref()); } /** * Constructor with STL iterator interface. The data will be copied into the * vector self, there isn't any stored reference to the array pointer. */ template explicit Vector(InputIterator first, InputIterator last) { assert( static_cast(std::distance(first, last)) <= Size); std::copy(first, last, m_data); } /** * Constructor with STL iterator interface. The data will be copied into the * vector self, there isn't any stored reference to the array pointer. */ template explicit Vector(InputIterator first, int sz) { assert(sz <= Size); std::copy(first, first + sz, m_data); } /** Constructor with initializer for all elements. */ explicit Vector(value_type rhs) { typedef XprLiteral expr_type; *this = XprVector(expr_type(rhs)); } /** Default Constructor with initializer list. */ explicit Vector(value_type x0, value_type x1) { TVMET_CT_CONDITION(2 <= Size, ArgumentList_is_too_long) m_data[0] = x0; m_data[1] = x1; } /** Default Constructor with initializer list. */ explicit Vector(value_type x0, value_type x1, value_type x2) { TVMET_CT_CONDITION(3 <= Size, ArgumentList_is_too_long) m_data[0] = x0; m_data[1] = x1; m_data[2] = x2; } /** Default Constructor with initializer list. */ explicit Vector(value_type x0, value_type x1, value_type x2, value_type x3) { TVMET_CT_CONDITION(4 <= Size, ArgumentList_is_too_long) m_data[0] = x0; m_data[1] = x1; m_data[2] = x2; m_data[3] = x3; } /** Default Constructor with initializer list. */ explicit Vector(value_type x0, value_type x1, value_type x2, value_type x3, value_type x4) { TVMET_CT_CONDITION(5 <= Size, ArgumentList_is_too_long) m_data[0] = x0; m_data[1] = x1; m_data[2] = x2; m_data[3] = x3; m_data[4] = x4; } /** Default Constructor with initializer list. */ explicit Vector(value_type x0, value_type x1, value_type x2, value_type x3, value_type x4, value_type x5) { TVMET_CT_CONDITION(6 <= Size, ArgumentList_is_too_long) m_data[0] = x0; m_data[1] = x1; m_data[2] = x2; m_data[3] = x3; m_data[4] = x4; m_data[5] = x5; } /** Default Constructor with initializer list. */ explicit Vector(value_type x0, value_type x1, value_type x2, value_type x3, value_type x4, value_type x5, value_type x6) { TVMET_CT_CONDITION(7 <= Size, ArgumentList_is_too_long) m_data[0] = x0; m_data[1] = x1; m_data[2] = x2; m_data[3] = x3; m_data[4] = x4; m_data[5] = x5; m_data[6] = x6; } /** Default Constructor with initializer list. */ explicit Vector(value_type x0, value_type x1, value_type x2, value_type x3, value_type x4, value_type x5, value_type x6, value_type x7) { TVMET_CT_CONDITION(8 <= Size, ArgumentList_is_too_long) m_data[0] = x0; m_data[1] = x1; m_data[2] = x2; m_data[3] = x3; m_data[4] = x4; m_data[5] = x5; m_data[6] = x6; m_data[7] = x7; } /** Default Constructor with initializer list. */ explicit Vector(value_type x0, value_type x1, value_type x2, value_type x3, value_type x4, value_type x5, value_type x6, value_type x7, value_type x8) { TVMET_CT_CONDITION(9 <= Size, ArgumentList_is_too_long) m_data[0] = x0; m_data[1] = x1; m_data[2] = x2; m_data[3] = x3; m_data[4] = x4; m_data[5] = x5; m_data[6] = x6; m_data[7] = x7; m_data[8] = x8; } /** Default Constructor with initializer list. */ explicit Vector(value_type x0, value_type x1, value_type x2, value_type x3, value_type x4, value_type x5, value_type x6, value_type x7, value_type x8, value_type x9) { TVMET_CT_CONDITION(10 <= Size, ArgumentList_is_too_long) m_data[0] = x0; m_data[1] = x1; m_data[2] = x2; m_data[3] = x3; m_data[4] = x4; m_data[5] = x5; m_data[6] = x6; m_data[7] = x7; m_data[8] = x8; m_data[9] = x9; } /** Construct a vector by expression. */ template explicit Vector(const XprVector& e) { *this = e; } /** Assign a value_type on array, this can be used for a single value or a comma separeted list of values. */ CommaInitializer operator=(value_type rhs) { return CommaInitializer(*this, rhs); } public: // access operators value_type* _tvmet_restrict data() { return m_data; } const value_type* _tvmet_restrict data() const { return m_data; } public: // index access operators value_type& _tvmet_restrict operator()(int i) { // Note: g++-2.95.3 does have problems on typedef reference assert(i < Size); return m_data[i]; } value_type operator()(int i) const { assert(i < Size); return m_data[i]; } value_type& _tvmet_restrict operator[](int i) { // Note: g++-2.95.3 does have problems on typedef reference return this->operator()(i); } value_type operator[](int i) const { return this->operator()(i); } public: // ET interface typedef VectorConstReference ConstReference; /** Return a const Reference of the internal data */ ConstReference const_ref() const { return ConstReference(*this); } /** Return the vector as const expression. */ XprVector as_expr() const { return XprVector(this->const_ref()); } private: /** Wrapper for meta assign. */ template static inline void do_assign(dispatch, Dest& dest, const Src& src, const Assign& assign_fn) { meta::Vector::assign(dest, src, assign_fn); } /** Wrapper for loop assign. */ template static inline void do_assign(dispatch, Dest& dest, const Src& src, const Assign& assign_fn) { loop::Vector::assign(dest, src, assign_fn); } public: /** assign this to a vector expression using the functional assign_fn. */ template void assign_to(Vector& dest, const Assign& assign_fn) const { do_assign(dispatch(), dest, *this, assign_fn); } public: // assign operations /** assign a given Vector element wise to this vector. The operator=(const Vector&) is compiler generated. */ template Vector& operator=(const Vector& rhs) { rhs.assign_to(*this, Fcnl_assign()); return *this; } /** assign a given XprVector element wise to this vector. */ template Vector& operator=(const XprVector& rhs) { rhs.assign_to(*this, Fcnl_assign()); return *this; } private: template friend class CommaInitializer; /** This is a helper for assigning a comma separated initializer list. It's equal to Vector& operator=(value_type) which does replace it. */ Vector& assign_value(value_type rhs) { typedef XprLiteral expr_type; *this = XprVector(expr_type(rhs)); return *this; } public: // math operators with scalars // NOTE: this meaning is clear - element wise ops even if not in ns element_wise Vector& operator+=(value_type) TVMET_CXX_ALWAYS_INLINE; Vector& operator-=(value_type) TVMET_CXX_ALWAYS_INLINE; Vector& operator*=(value_type) TVMET_CXX_ALWAYS_INLINE; Vector& operator/=(value_type) TVMET_CXX_ALWAYS_INLINE; Vector& operator%=(int) TVMET_CXX_ALWAYS_INLINE; Vector& operator^=(int) TVMET_CXX_ALWAYS_INLINE; Vector& operator&=(int) TVMET_CXX_ALWAYS_INLINE; Vector& operator|=(int) TVMET_CXX_ALWAYS_INLINE; Vector& operator<<=(int) TVMET_CXX_ALWAYS_INLINE; Vector& operator>>=(int) TVMET_CXX_ALWAYS_INLINE; public: // math assign operators with vectors // NOTE: access using the operators in ns element_wise, since that's what is does template Vector& M_add_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_sub_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_mul_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_div_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_mod_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_xor_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_and_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_or_eq (const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_shl_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_shr_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; public: // math operators with expressions // NOTE: access using the operators in ns element_wise, since that's what is does template Vector& M_add_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_sub_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_mul_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_div_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_mod_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_xor_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_and_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_or_eq (const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_shl_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& M_shr_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; public: // aliased math operators with expressions, used with proxy template Vector& alias_assign(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& alias_add_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& alias_sub_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& alias_mul_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& alias_div_eq(const Vector&) TVMET_CXX_ALWAYS_INLINE; template Vector& alias_assign(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& alias_add_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& alias_sub_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& alias_mul_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; template Vector& alias_div_eq(const XprVector&) TVMET_CXX_ALWAYS_INLINE; public: // io /** Structure for info printing as Vector. */ struct Info : public TvmetBase { std::ostream& print_xpr(std::ostream& os) const { os << "Vector"; return os; } }; /** Get an info object of this vector. */ static Info info() { return Info(); } /** Member function for expression level printing. */ std::ostream& print_xpr(std::ostream& os, int l=0) const; /** Member function for printing internal data. */ std::ostream& print_on(std::ostream& os) const; private: /** The data of vector self. */ value_type m_data[Size]; }; typedef Vector Vector2i; typedef Vector Vector3i; typedef Vector Vector4i; typedef Vector Vector2f; typedef Vector Vector3f; typedef Vector Vector4f; typedef Vector Vector2d; typedef Vector Vector3d; typedef Vector Vector4d; } // namespace tvmet #include #include #include #include #include #include #include #endif // TVMET_VECTOR_H // Local Variables: // mode:C++ // End: