ODE  0.13.1
 All Data Structures Functions Variables Typedefs Enumerations Groups
precision.h
1 #ifndef _ODE_PRECISION_H_
2 #define _ODE_PRECISION_H_
3 
4 /* Define dSINGLE for single precision, dDOUBLE for double precision,
5  * but never both!
6  */
7 
8 #if defined(dIDESINGLE)
9 #define dSINGLE
10 #elif defined(dIDEDOUBLE)
11 #define dDOUBLE
12 #else
13 #define dSINGLE
14 #endif
15 
16 #endif