BALL 1.5.0
complex.h
Go to the documentation of this file.
1// -*- Mode: C++; tab-width: 2; -*-
2// vi: set ts=2:
3//
4// $Id: complex.h,v 1.22 2006/01/03 18:15:47 anhi Exp $
5
6#ifndef BALL_MATHS_COMPLEX_H
7#define BALL_MATHS_COMPLEX_H
8
9#ifndef BALL_COMMON_H
10# include <BALL/common.h>
11#endif
12
13#include <complex>
14
15#ifdef BALL_HAS_FFTW_H
16 #include <fftw3.h>
17#endif
18
19namespace BALL
20{
21 typedef std::complex<BALL_COMPLEX_PRECISION> Complex;
22} // namespace BALL
23
24#endif // BALL_MATHS_COMPLEX_H
Definition: constants.h:13
std::complex< BALL_COMPLEX_PRECISION > Complex
Definition: complex.h:21