File: precision.h

package info (click to toggle)
ode 2%3A0.16.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,000 kB
  • sloc: cpp: 90,025; ansic: 14,677; sh: 4,346; makefile: 762; python: 330
file content (16 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _ODE_PRECISION_H_
#define _ODE_PRECISION_H_

/* Define dSINGLE for single precision, dDOUBLE for double precision,
 * but never both!
 */

#if defined(dIDESINGLE)
#define dSINGLE
#elif defined(dIDEDOUBLE)
#define dDOUBLE
#else
#define dSINGLE
#endif

#endif