/* * $Id: tinyvecio.cc,v 1.1.1.1 1999-04-09 17:59:01 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.2 1998/03/14 00:04:47 tveldhui * 0.2-alpha-05 * * Revision 1.1 1997/07/16 14:51:20 tveldhui * Update: Alpha release 0.2 (Arrays) * */ #ifndef BZ_TINYVECIO_CC #define BZ_TINYVECIO_CC #ifndef BZ_TINYVEC_H #include #endif BZ_NAMESPACE(blitz) // NEEDS_WORK template ostream& operator<<(ostream& os, const TinyVector& x) { os << "[ "; for (int i=0; i < N_length; ++i) { os << setw(10) << x[i]; if (!((i+1)%7)) os << endl << " "; } os << " ]"; return os; } BZ_NAMESPACE_END #endif // BZ_TINYVECIO_CC