https://github.com/N-BodyShop/changa
Raw File
Tip revision: e4a9f334c86128f60ba065aef85fd342678404f8 authored by Collin J. Sutton on 10 March 2014, 02:34:01 UTC
Revert "Makefile.in: corrected references to Makefile.dep (lives in SOURCE dir)"
Tip revision: e4a9f33
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