https://github.com/N-BodyShop/changa
Raw File
Tip revision: bc2ee324902f51a6e28d834ff191b76211a3cbc6 authored by Tom Quinn on 05 July 2012, 18:45:38 UTC
Delete isinf() debugging checks.
Tip revision: bc2ee32
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