home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
SCIENCE
/
PRAXIS.ZIP
/
MACHINE.H
< prev
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