The R Project SVN R

Rev

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

Rev 70611 Rev 71083
Line 10... Line 10...
10
#undef min
10
#undef min
11
#define min(a,b) ((a < b)?a:b)
11
#define min(a,b) ((a < b)?a:b)
12
#undef max
12
#undef max
13
#define max(a,b) ((a > b)?a:b)
13
#define max(a,b) ((a > b)?a:b)
14
 
14
 
15
#include "nmath.h"
15
#include "nmath.h" /* includes config.h, math.h */
16
#include "dpq.h"
16
#include "dpq.h"
17
/* after config.h to avoid warning on Solaris */
17
/* after config.h to avoid warning on Solaris */
18
#include <limits.h>
18
#include <limits.h>
19
/* <math.h> is included by above, with suitable defines in glibc systems
-
 
20
   to make log1p and expm1 declared */
-
 
21
 
19
 
22
/**----------- DEBUGGING -------------
20
/**----------- DEBUGGING -------------
23
 *
21
 *
24
 *	make CFLAGS='-DDEBUG_bratio  ...'
22
 *	make CFLAGS='-DDEBUG_bratio  ...'
25
 *MM (w/ Debug, w/o Optimization):
23
 *MM (w/ Debug, w/o Optimization):