https://github.com/N-BodyShop/changa
Raw File
Tip revision: b5b61018eea75aa7753f925ca6fafab1a23a7efa authored by Robel Geda on 24 April 2017, 04:37:15 UTC
Ewald Race Condition Fix.
Tip revision: b5b6101
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