home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Troubleshooting Netware Systems
/
CSTRIAL0196.BIN
/
attach
/
pcc
/
v08n03
/
math.exe
/
PRAXIS.ZIP
/
MACHINE.H
next >
Wrap
C/C++ Source or Header
|
1987-07-22
|
261b
|
12 lines
#ifdef MSDOS /* 80x87 math chip microsoft C */
#define EPSILON 1.0e-10
#define SQREPSILON 1.0e-20
#else /* vax 11/750 unix cc */
#define EPSILON 1.0e-8
#define SQREPSILON 1.0e-16
#endif
/* dimension of arrays - can be increased*/
#define N 20