HiRep 0.1
Loading...
Searching...
No Matches
cpu_complex.h
Go to the documentation of this file.
1/***************************************************************************\
2* Copyright (c) 2008, Claudio Pica *
3* All rights reserved. *
4\***************************************************************************/
5
11#ifndef CPU_COMPLEX_H
12#define CPU_COMPLEX_H
13
14#include <tgmath.h>
15// tgmath includes math.h and complex.h
16// and defines type-generic macros for math functions
17// e.g: float complex fc; creal(fc) invokes crealf(fc)
18
19typedef double complex hr_complex;
20typedef float complex hr_complex_flt;
21
22#endif