The R Project SVN R

Rev

Rev 12778 | Rev 42308 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12778 Rev 22931
Line 23... Line 23...
23
 
23
 
24
#ifndef M_PI
24
#ifndef M_PI
25
#define M_PI 3.141592653589793238462643383279502884197169399375
25
#define M_PI 3.141592653589793238462643383279502884197169399375
26
#endif
26
#endif
27
 
27
 
-
 
28
#ifndef STRICT_R_HEADERS
28
#define PI             M_PI
29
#define PI             M_PI
29
#define SINGLE_EPS     FLT_EPSILON
30
#define SINGLE_EPS     FLT_EPSILON
30
#define SINGLE_BASE    FLT_RADIX
31
#define SINGLE_BASE    FLT_RADIX
31
#define SINGLE_XMIN    FLT_MIN
32
#define SINGLE_XMIN    FLT_MIN
32
#define SINGLE_XMAX    FLT_MAX
33
#define SINGLE_XMAX    FLT_MAX
33
#define DOUBLE_DIGITS  DBL_MANT_DIG
34
#define DOUBLE_DIGITS  DBL_MANT_DIG
34
#define DOUBLE_EPS     DBL_EPSILON
35
#define DOUBLE_EPS     DBL_EPSILON
35
#define DOUBLE_XMAX    DBL_MAX
36
#define DOUBLE_XMAX    DBL_MAX
36
#define DOUBLE_XMIN    DBL_MIN
37
#define DOUBLE_XMIN    DBL_MIN
37
 
-
 
38
#endif
38
#endif
-
 
39
 
-
 
40
#endif /* R_EXT_CONSTANTS_H_ */