changa
3.5
Loading...
Searching...
No Matches
cosmoType.h
1
#ifndef __COSMOTYPE_H__
2
#define __COSMOTYPE_H__
3
4
/* #define COSMO_FLOAT */
5
6
#ifdef COSMO_FLOAT
7
#define CONVERT_TO_COSMO_TYPE (float)
8
typedef
float
cosmoType;
9
#define COSMO_CONST(val) val##f
10
#else
11
#define CONVERT_TO_COSMO_TYPE
12
typedef
double
cosmoType;
13
#define COSMO_CONST(val) val
14
#endif
15
16
#endif
Generated by
1.13.2