File: constants.h

package info (click to toggle)
cf-python 1.3.2%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 7,996 kB
  • sloc: python: 51,733; ansic: 2,736; makefile: 78; sh: 2
file content (9 lines) | stat: -rw-r--r-- 218 bytes parent folder | download
1
2
3
4
5
6
7
8
9
/* int_missing_data is convention in input file */
#define INT_MISSING_DATA -32768

/* for float comparisons */
#if defined(SINGLE)
#define REAL_TOLERANCE 1e-5
#elif defined(DOUBLE)
#define REAL_TOLERANCE 1e-13
#endif