/* * $Id: vecaccum.cc,v 1.1.1.1 1999-04-09 17:58:58 ansari Exp $ * * Copyright (C) 1997 Todd Veldhuizen * All rights reserved. Please see for terms and * conditions of use. * * $Log: not supported by cvs2svn $ * Revision 1.4 1998/03/14 00:04:47 tveldhui * 0.2-alpha-05 * * Revision 1.3 1997/07/16 14:51:20 tveldhui * Update: Alpha release 0.2 (Arrays) * * Revision 1.2 1997/01/24 14:42:00 tveldhui * Periodic RCS update * */ #ifndef BZ_VECACCUM_CC #define BZ_VECACCUM_CC #ifndef BZ_VECGLOBS_H #error must be included via #endif BZ_NAMESPACE(blitz) template inline Vector _bz_vec_accumulate(P expr) { typedef BZ_SUMTYPE(_bz_typename P::T_numtype) T_sumtype; int length = expr._bz_suggestLength(); Vector z(length); T_sumtype sum = 0; if (expr._bz_hasFastAccess()) { for (int i=0; i < length; ++i) { sum += expr._bz_fastAccess(i); z[i] = sum; } } else { for (int i=0; i < length; ++i) { sum += expr(i); z[i] = sum; } } return z; } template Vector accumulate(const Vector& x) { return _bz_vec_accumulate(x); } template Vector accumulate(_bz_VecExpr x) { return _bz_vec_accumulate(x); } template Vector accumulate(const VectorPick& x) { return _bz_vec_accumulate(x); } BZ_NAMESPACE_END #endif // BZ_VECACCUM_CC