https://github.com/N-BodyShop/changa
Raw File
Tip revision: ccb40fb2a7399fd31a4a758135ca29ba8a6b0415 authored by Tom Quinn on 16 March 2018, 23:40:48 UTC
Refactor buildTree in Main.
Tip revision: ccb40fb
cosmoType.h
#ifndef __COSMOTYPE_H__
#define __COSMOTYPE_H__

/* #define COSMO_FLOAT */

#ifdef COSMO_FLOAT
#define CONVERT_TO_COSMO_TYPE (float)
typedef float cosmoType;
#define COSMO_CONST(val) val##f
#else
#define CONVERT_TO_COSMO_TYPE
typedef double cosmoType;
#define COSMO_CONST(val) val
#endif

#endif
back to top