ROCK 1.9.1
Relativistic Oscillator Calculation Kit
Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1#ifndef ROCK_TYPES_H
2#define ROCK_TYPES_H
3#ifdef __cplusplus
4#include <complex>
5typedef double real;
6typedef std::complex<double> cplx;
7#else
8#include <complex.h>
9#ifdef _MSC_VER
10typedef double real;
11typedef _Dcomplex cplx;
12#else
13typedef double real;
14typedef double _Complex cplx;
15#endif
16#endif
17#endif
double real
Definition types.h:13
double _Complex cplx
Definition types.h:14