This repository has been archived by the owner on May 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vector-et.h
39 lines (33 loc) · 1.46 KB
/
vector-et.h
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
28
29
30
31
32
33
34
35
36
37
38
/***************************************************************************
* blitz/vector-et.h Vector<P_numtype> class + expression templates
*
* $Id: vector-et.h,v 1.2 2003/01/14 11:29:18 patricg Exp $
*
* Copyright (C) 1997-2001 Todd Veldhuizen <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* Suggestions: [email protected]
* Bugs: [email protected]
*
* For more information, please see the Blitz++ Home Page:
* http://oonumerics.org/blitz/
*
***************************************************************************/
#ifndef BZ_VECTOR_ET_H
#define BZ_VECTOR_ET_H
#include <blitz/vector.h>
// These are compile-time expensive things not included
// by <blitz/vector.h>, but needed if we want vector expressions.
#include <blitz/vecbops.cc> // Operators with two operands
#include <blitz/vecuops.cc> // Functions with one argument
#include <blitz/vecbfn.cc> // Functions with two arguments
#endif // BZ_VECTOR_ET_H