⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vecall.cc

📁 A C++ class library for scientific computing
💻 CC
字号:
/* * $Id: vecall.cc,v 1.3 2003/12/11 03:44:22 julianc Exp $ * * Copyright (C) 1997 Todd Veldhuizen <tveldhui@oonumerics.org> * All rights reserved.  Please see <blitz/blitz.h> for terms and * conditions of use. * */#ifndef BZ_VECALL_CC#define BZ_VECALL_CC#ifndef BZ_VECGLOBS_H #error <blitz/vecall.cc> must be included via <blitz/vecglobs.h>#endifBZ_NAMESPACE(blitz)template<typename P_expr>inline bool _bz_vec_all(P_expr vector){    int length = vector._bz_suggestLength();    if (vector._bz_hasFastAccess())    {        for (int i=0; i < length; ++i)            if (!vector._bz_fastAccess(i))                return false;    }    else {        for (int i=0; i < length; ++i)            if (!vector[i])                return false;    }    return true;}template<typename P_numtype>inline bool all(const Vector<P_numtype>& x){    return _bz_vec_all(x._bz_asVecExpr());}template<typename P_expr>inline bool all(_bz_VecExpr<P_expr> expr){    return _bz_vec_all(expr);}template<typename P_numtype>inline bool all(const VectorPick<P_numtype>& x){    return _bz_vec_all(x._bz_asVecExpr());}template<typename P_numtype, int N_dimensions>inline bool all(const TinyVector<P_numtype, N_dimensions>& x){    return _bz_vec_all(x._bz_asVecExpr());}BZ_NAMESPACE_END#endif // BZ_VECALL_CC

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -