https://github.com/N-BodyShop/changa
Raw File
Tip revision: c7a6e8b734c578f3965207cef24f349b846316d2 authored by Tim Haines on 30 April 2017, 03:54:12 UTC
Use KeyType from keytype.h for NodeKey
Tip revision: c7a6e8b
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