home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
math
/
praxis.arc
/
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