/*************************************************************************** * blitz/veciter.h Iterator classes for Vector * * $Id: veciter.h,v 1.1.1.1 1999-04-09 17:59:00 ansari Exp $ * * Copyright (C) 1997,1998 Todd Veldhuizen * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * Suggestions: blitz-suggest@cybervision.com * Bugs: blitz-bugs@cybervision.com * * For more information, please see the Blitz++ Home Page: * http://seurat.uwaterloo.ca/blitz/ * *************************************************************************** * $Log: not supported by cvs2svn $ * Revision 1.6 1998/03/14 00:04:47 tveldhui * 0.2-alpha-05 * * Revision 1.5 1997/07/16 14:51:20 tveldhui * Update: Alpha release 0.2 (Arrays) * * Revision 1.4 1997/01/24 14:42:00 tveldhui * Periodic RCS update * * Revision 1.3 1997/01/23 03:28:28 tveldhui * Periodic RCS update * * Revision 1.2 1997/01/13 22:19:58 tveldhui * Periodic RCS update * * */ #ifndef BZ_VECITER_H #define BZ_VECITER_H #ifndef BZ_VECTOR_H #error should be included via #endif BZ_NAMESPACE(blitz) // Declaration of class VectorIter template class VectorIter { public: typedef P_numtype T_numtype; _bz_explicit VectorIter(Vector& x) : data_(x.data()) { stride_ = x.stride(); length_ = x.length(); } VectorIter(P_numtype* _bz_restrict data, int stride, int length) : data_(data), stride_(stride), length_(length) { } #ifdef BZ_MANUAL_VECEXPR_COPY_CONSTRUCTOR VectorIter(const VectorIter& x) { data_ = x.data_; stride_ = x.stride_; length_ = x.length_; } #endif P_numtype operator[](int i) const { BZPRECONDITION(i < length_); return data_[i*stride_]; } P_numtype& _bz_restrict operator[](int i) { BZPRECONDITION(i < length_); return data_[i*stride_]; } P_numtype operator()(int i) const { BZPRECONDITION(i < length_); return data_[i*stride_]; } P_numtype& _bz_restrict operator()(int i) { BZPRECONDITION(i < length_); return data_[i*stride_]; } P_numtype operator*() const { return *data_; } P_numtype& operator*() { return *data_; } VectorIter operator+(int i) { // NEEDS_WORK -- precondition checking? return VectorIter(data_+i*stride_, stride_, length_-i); } int length(int) const { return length_; } _bz_bool isUnitStride() const { return (stride_ == 1); } ///////////////////////////////////////////// // Library-internal member functions // These are undocumented and may change or // disappear in future releases. ///////////////////////////////////////////// enum { _bz_staticLengthCount = 0, _bz_dynamicLengthCount = 1, _bz_staticLength = 0 }; _bz_bool _bz_hasFastAccess() const { return isUnitStride(); } P_numtype _bz_fastAccess(int i) const { return data_[i]; } P_numtype& _bz_restrict _bz_fastAccess(int i) { return data_[i]; } int _bz_suggestLength() const { return length_; } private: VectorIter() { } P_numtype * _bz_restrict data_; int stride_; int length_; }; template class VectorIterConst { public: typedef P_numtype T_numtype; _bz_explicit VectorIterConst(const Vector& x) : data_(x.data()) { stride_ = x.stride(); length_ = x.length(); } #ifdef BZ_MANUAL_VECEXPR_COPY_CONSTRUCTOR VectorIterConst(const VectorIterConst& x) { data_ = x.data_; stride_ = x.stride_; length_ = x.length_; } #endif P_numtype operator[](int i) const { BZPRECONDITION(i < length_); return data_[i*stride_]; } P_numtype operator()(int i) const { BZPRECONDITION(i < length_); return data_[i*stride_]; } int length(int) const { return length_; } _bz_bool isUnitStride() const { return (stride_ == 1); } ///////////////////////////////////////////// // Library-internal member functions // These are undocumented and may change or // disappear in future releases. ///////////////////////////////////////////// enum { _bz_staticLengthCount = 0, _bz_dynamicLengthCount = 1, _bz_staticLength = 0 }; _bz_bool _bz_hasFastAccess() const { return isUnitStride(); } P_numtype _bz_fastAccess(int i) const { return data_[i]; } int _bz_suggestLength() const { return length_; } private: const P_numtype * _bz_restrict data_; int stride_; int length_; }; BZ_NAMESPACE_END #endif // BZ_VECITER_H