00001 /*************************************************************************** 00002 * blitz/vector-et.h Vector<P_numtype> class + expression templates 00003 * 00004 * $Id: vector-et.h,v 1.2 2003/01/14 11:29:18 patricg Exp $ 00005 * 00006 * Copyright (C) 1997-2001 Todd Veldhuizen <tveldhui@oonumerics.org> 00007 * 00008 * This program is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU General Public License 00010 * as published by the Free Software Foundation; either version 2 00011 * of the License, or (at your option) any later version. 00012 * 00013 * This program is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * Suggestions: blitz-dev@oonumerics.org 00019 * Bugs: blitz-bugs@oonumerics.org 00020 * 00021 * For more information, please see the Blitz++ Home Page: 00022 * http://oonumerics.org/blitz/ 00023 * 00024 ***************************************************************************/ 00025 00026 #ifndef BZ_VECTOR_ET_H 00027 #define BZ_VECTOR_ET_H 00028 00029 #include <blitz/vector.h> 00030 00031 // These are compile-time expensive things not included 00032 // by <blitz/vector.h>, but needed if we want vector expressions. 00033 00034 #include <blitz/vecbops.cc> // Operators with two operands 00035 #include <blitz/vecuops.cc> // Functions with one argument 00036 #include <blitz/vecbfn.cc> // Functions with two arguments 00037 00038 #endif // BZ_VECTOR_ET_H 00039