precision.h.in 274 B

12345678910111213141516
  1. #ifndef _ODE_PRECISION_H_
  2. #define _ODE_PRECISION_H_
  3. /* Define dSINGLE for single precision, dDOUBLE for double precision,
  4. * but never both!
  5. */
  6. #if defined(dIDESINGLE)
  7. #define dSINGLE
  8. #elif defined(dIDEDOUBLE)
  9. #define dDOUBLE
  10. #else
  11. #define @ODE_PRECISION@
  12. #endif
  13. #endif