1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/***************************************************************************
* blitz/tinyvec-et.h Tinyvector + vector expression templates
*
* $Id: tinyvec-et.h 1414 2005-11-01 22:04:59Z cookedm $
*
* Copyright (C) 1997-2000 Todd Veldhuizen <tveldhui@oonumerics.org>
*
* This code was relicensed under the modified BSD license for use in SciPy
* by Todd Veldhuizen (see LICENSE.txt in the weave directory).
*
*
* Suggestions: blitz-dev@oonumerics.org
* Bugs: blitz-bugs@oonumerics.org
*
* For more information, please see the Blitz++ Home Page:
* http://oonumerics.org/blitz/
*
***************************************************************************/
#ifndef BZ_TINYVEC_ET_H
#define BZ_TINYVEC_ET_H
#include <blitz/tinyvec.h>
#include <blitz/vector-et.h> // vector expressions
#endif // BZ_TINYVEC_ET_H
|