~ubuntu-branches/ubuntu/oneiric/python-scipy/oneiric-proposed

« back to all changes in this revision

Viewing changes to Lib/weave/blitz/blitz/vector-et.h

  • Committer: Bazaar Package Importer
  • Author(s): Ondrej Certik
  • Date: 2008-06-16 22:58:01 UTC
  • mfrom: (2.1.24 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080616225801-irdhrpcwiocfbcmt
Tags: 0.6.0-12
* The description updated to match the current SciPy (Closes: #489149).
* Standards-Version bumped to 3.8.0 (no action needed)
* Build-Depends: netcdf-dev changed to libnetcdf-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 * blitz/vector-et.h      Vector<P_numtype> class + expression templates
3
 
 *
4
 
 * $Id: vector-et.h 1414 2005-11-01 22:04:59Z cookedm $
5
 
 *
6
 
 * Copyright (C) 1997-2001 Todd Veldhuizen <tveldhui@oonumerics.org>
7
 
 *
8
 
 * This program is free software; you can redistribute it and/or
9
 
 * modify it under the terms of the GNU General Public License
10
 
 * as published by the Free Software Foundation; either version 2
11
 
 * of the License, or (at your option) any later version.
12
 
 *
13
 
 * This program is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 * GNU General Public License for more details.
17
 
 *
18
 
 * Suggestions:          blitz-dev@oonumerics.org
19
 
 * Bugs:                 blitz-bugs@oonumerics.org
20
 
 *
21
 
 * For more information, please see the Blitz++ Home Page:
22
 
 *    http://oonumerics.org/blitz/
23
 
 *
24
 
 ***************************************************************************/
25
 
 
26
 
#ifndef BZ_VECTOR_ET_H
27
 
#define BZ_VECTOR_ET_H
28
 
 
29
 
#include <blitz/vector.h>
30
 
 
31
 
// These are compile-time expensive things not included
32
 
// by <blitz/vector.h>, but needed if we want vector expressions.
33
 
 
34
 
#include <blitz/vecbops.cc>         // Operators with two operands
35
 
#include <blitz/vecuops.cc>         // Functions with one argument
36
 
#include <blitz/vecbfn.cc>          // Functions with two arguments
37
 
 
38
 
#endif  // BZ_VECTOR_ET_H
39