source: XMLIO_V2/external/include/blitz/zero.cc @ 80

Last change on this file since 80 was 80, checked in by ymipsl, 14 years ago

ajout lib externe

File size: 641 bytes
Line 
1/*
2 * Copyright (C) 1997 Todd Veldhuizen <tveldhui@oonumerics.org>
3 * All rights reserved.  Please see <blitz/blitz.h> for terms and
4 * conditions of use.
5 *
6 */
7
8#ifndef BZ_ZERO_H
9 #include <blitz/zero.h>
10#endif
11
12#ifndef BZ_ZERO_CC
13#define BZ_ZERO_CC
14
15BZ_NAMESPACE(blitz)
16
17#ifdef BZ_HAVE_COMPLEX
18
19complex<float>  ZeroElement<complex<float> >::zero_ = 
20    complex<float>(0.0f, 0.0f);
21
22complex<double> ZeroElement<complex<double> >::zero_ =
23    complex<double>(0.,0.);
24
25complex<long double> ZeroElement<complex<long double> >::zero_ =
26    complex<long double>(0.0L, 0.0L);
27
28#endif // BZ_HAVE_COMPLEX
29
30BZ_NAMESPACE_END
31
32#endif // BZ_ZERO_CC
33
Note: See TracBrowser for help on using the repository browser.