/*************************************************************************** * blitz/vecexpr.h Vector expression templates * * $Id: vecexpr.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_VECEXPR_H #define BZ_VECEXPR_H #ifndef BZ_VECTOR_H #include #endif #ifndef BZ_APPLICS_H #include #endif #ifndef BZ_META_METAPROG_H #include #endif #ifndef BZ_VECEXPRWRAP_H #include // _bz_VecExpr wrapper class #endif BZ_NAMESPACE(blitz) template class _bz_VecExprOp { public: typedef P_expr1 T_expr1; typedef P_expr2 T_expr2; typedef _bz_typename T_expr1::T_numtype T_numtype1; typedef _bz_typename T_expr2::T_numtype T_numtype2; typedef BZ_PROMOTE(T_numtype1, T_numtype2) T_numtype; typedef P_op T_op; #ifdef BZ_PASS_EXPR_BY_VALUE _bz_VecExprOp(T_expr1 a, T_expr2 b) : iter1_(a), iter2_(b) { } #else _bz_VecExprOp(const T_expr1& a, const T_expr2& b) : iter1_(a), iter2_(b) { } #endif #ifdef BZ_MANUAL_VECEXPR_COPY_CONSTRUCTOR _bz_VecExprOp(const _bz_VecExprOp& x) : iter1_(x.iter1_), iter2_(x.iter2_) { } #endif T_numtype operator[](int i) const { return T_op::apply(iter1_[i], iter2_[i]); } T_numtype operator()(int i) const { return T_op::apply(iter1_(i), iter2_(i)); } int length(int recommendedLength) const { BZPRECONDITION(iter2_.length(recommendedLength) == iter1_.length(recommendedLength)); return iter1_.length(recommendedLength); } enum { _bz_staticLengthCount = BZ_ENUM_CAST(P_expr1::_bz_staticLengthCount) + BZ_ENUM_CAST(P_expr2::_bz_staticLengthCount), _bz_dynamicLengthCount = BZ_ENUM_CAST(P_expr1::_bz_dynamicLengthCount) + BZ_ENUM_CAST(P_expr2::_bz_dynamicLengthCount), _bz_staticLength = (BZ_ENUM_CAST(P_expr1::_bz_staticLength) > BZ_ENUM_CAST(P_expr2::_bz_staticLength)) ? BZ_ENUM_CAST(P_expr1::_bz_staticLength) : BZ_ENUM_CAST(P_expr2::_bz_staticLength) // _bz_meta_max::max }; int _bz_suggestLength() const { int length1 = iter1_._bz_suggestLength(); if (length1 != 0) return length1; return iter2_._bz_suggestLength(); } _bz_bool _bz_hasFastAccess() const { return iter1_._bz_hasFastAccess() && iter2_._bz_hasFastAccess(); } T_numtype _bz_fastAccess(int i) const { return T_op::apply(iter1_._bz_fastAccess(i), iter2_._bz_fastAccess(i)); } private: _bz_VecExprOp(); T_expr1 iter1_; T_expr2 iter2_; }; template class _bz_VecExprUnaryOp { public: typedef P_expr T_expr; typedef P_unaryOp T_unaryOp; typedef _bz_typename T_unaryOp::T_numtype T_numtype; #ifdef BZ_PASS_EXPR_BY_VALUE _bz_VecExprUnaryOp(T_expr iter) : iter_(iter) { } #else _bz_VecExprUnaryOp(const T_expr& iter) : iter_(iter) { } #endif #ifdef BZ_MANUAL_VECEXPR_COPY_CONSTRUCTOR _bz_VecExprUnaryOp(const _bz_VecExprUnaryOp& x) : iter_(x.iter_) { } #endif T_numtype operator[](int i) const { return T_unaryOp::apply(iter_[i]); } T_numtype operator()(int i) const { return T_unaryOp::apply(iter_(i)); } int length(int recommendedLength) const { return iter_.length(recommendedLength); } enum { _bz_staticLengthCount = BZ_ENUM_CAST(P_expr::_bz_staticLengthCount), _bz_dynamicLengthCount =BZ_ENUM_CAST(P_expr::_bz_dynamicLengthCount), _bz_staticLength = BZ_ENUM_CAST(P_expr::_bz_staticLength) }; int _bz_suggestLength() const { return iter_._bz_suggestLength(); } _bz_bool _bz_hasFastAccess() const { return iter_._bz_hasFastAccess(); } T_numtype _bz_fastAccess(int i) const { return T_unaryOp::apply(iter_._bz_fastAccess(i)); } private: _bz_VecExprUnaryOp() { } T_expr iter_; }; template class _bz_VecExprConstant { public: typedef P_numtype T_numtype; _bz_VecExprConstant(P_numtype value) : value_(BZ_NO_PROPAGATE(value)) { } #ifdef BZ_MANUAL_VECEXPR_COPY_CONSTRUCTOR _bz_VecExprConstant(const _bz_VecExprConstant& x) : value_(x.value_) { } #endif T_numtype operator[](int) const { return value_; } T_numtype operator()(int) const { return value_; } int length(int recommendedLength) const { return recommendedLength; } enum { _bz_staticLengthCount = 0, _bz_dynamicLengthCount = 0, _bz_staticLength = 0 }; int _bz_suggestLength() const { return 0; } _bz_bool _bz_hasFastAccess() const { return 1; } T_numtype _bz_fastAccess(int) const { return value_; } private: _bz_VecExprConstant() { } T_numtype value_; }; // Some miscellaneous operators that don't seem to belong anywhere else. template inline _bz_VecExpr<_bz_VecExprUnaryOp<_bz_VecExpr, _bz_negate<_bz_typename P_expr::T_numtype> > > operator-(_bz_VecExpr a) { typedef _bz_VecExprUnaryOp<_bz_VecExpr, _bz_negate<_bz_typename P_expr::T_numtype> > T_expr; return _bz_VecExpr(T_expr(a)); } template inline _bz_VecExpr<_bz_VecExprUnaryOp, _bz_negate > > operator-(const Vector& a) { typedef _bz_VecExprUnaryOp, _bz_negate > T_expr; return _bz_VecExpr(T_expr(a.begin())); } inline _bz_VecExpr<_bz_VecExprUnaryOp > > operator-(Range r) { typedef _bz_VecExprUnaryOp > T_expr; return _bz_VecExpr(T_expr(r)); } // NEEDS_WORK: implement operator- for Range, VectorPick, TinyVector BZ_NAMESPACE_END #ifndef BZ_TINYVEC_H #include #endif #include // Operators with two operands #include // Functions with one argument #include // Functions with two arguments #endif // BZ_VECEXPR_H