https://github.com/N-BodyShop/changa
Raw File
Tip revision: af265be7be5413eef4ba266a24c199cde9b0a459 authored by Tom Quinn on 04 September 2019, 23:38:12 UTC
Release 3.4
Tip revision: af265be
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