/* * $Id: vecmax.cc,v 1.1.1.1 1999-11-26 16:37:05 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.1.1.1 1999/04/09 17:58:58 ansari // Creation module DPC/Blitz (blitz 0.4) Reza 09/04/99 // * 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_VECMAX_CC #define BZ_VECMAX_CC #ifndef BZ_VECGLOBS_H #error must be included via #endif BZ_NAMESPACE(blitz) template inline Extremum<_bz_typename P_expr::T_numtype, int> _bz_vec_max(P_expr vector) { typedef _bz_typename P_expr::T_numtype T_numtype; T_numtype maxValue = vector(0); int maxIndex = 0; int length = vector._bz_suggestLength(); if (vector._bz_hasFastAccess()) { for (int i=1; i < length; ++i) { T_numtype value = vector._bz_fastAccess(i); if (value > maxValue) { maxValue = value; maxIndex = i; } } } else { for (int i=1; i < length; ++i) { T_numtype value = vector(i); if (value > maxValue) { maxValue = value; maxIndex = i; } } } return Extremum(maxValue, maxIndex); } // max(vector) template inline Extremum max(const Vector& x) { return _bz_vec_max(x._bz_asVecExpr()); } // max(expr) template inline Extremum<_bz_typename P_expr::T_numtype,int> max(_bz_VecExpr x) { return _bz_vec_max(x); } // max(vecpick) template inline Extremum max(const VectorPick& x) { return _bz_vec_max(x._bz_asVecExpr()); } // max(TinyVector) template inline Extremum max(const TinyVector& x) { return _bz_vec_max(x._bz_asVecExpr()); } // maxIndex(vector) template inline int maxIndex(const Vector& x) { return _bz_vec_max(x).index(); } // maxIndex(expr) template inline int maxIndex(_bz_VecExpr x) { return _bz_vec_max(x._bz_asVecExpr()).index(); } // maxIndex(vecpick) template int maxIndex(const VectorPick& x) { return _bz_vec_max(x._bz_asVecExpr()).index(); } // maxIndex(TinyVector) template int maxIndex(const TinyVector& x) { return _bz_vec_max(x._bz_asVecExpr()).index(); } // maxValue(vector) template inline int maxValue(const Vector& x) { return _bz_vec_max(x._bz_asVecExpr()).value(); } // maxValue(expr) template inline int maxValue(_bz_VecExpr x) { return _bz_vec_max(x).value(); } // maxValue(vecpick) template int maxValue(const VectorPick& x) { return _bz_vec_max(x._bz_asVecExpr()).value(); } // maxValue(TinyVector) template int maxValue(const TinyVector& x) { return _bz_vec_max(x._bz_asVecExpr()).value(); } BZ_NAMESPACE_END #endif // BZ_VECMAX_CC