summaryrefslogtreecommitdiff
path: root/include/config.h
blob: a27b75df1e83431c2c45768c9d469a1751e8735f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef _CONFIG_H
#define _CONFIG_H

#include <bigrational.h>

//  Preprocessor Symbols depending "only" on the system.
////    In makefile, put
////                      CFLAGS += -D_Linux_i386_
////    or some such.
//#define _Linux_i386_
//#define _SunOS_
//#define _IRIX_

#define DIM 3
#define MAX_NUM_GOOD_FP_BITS 30
#define IN  1
#define OUT -1
//#define ALL_CCW

extern bigrational shrink_step;
extern bigrational init_tol;
extern bigrational epsilon;
extern bigrational s_epsilon;
extern bigrational t_epsilon;

#endif