File:  [MW Coherent from dump] / coherent / a / usr / src / misc / approx.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:34 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

/*
 * return 1 if args are within epsilon else 0
 */

double epsilon = 1.0e-20;

approx(a, b)
double a, b;
{
	if(0 > (a -= b))
		a = -a;
	return(a <= epsilon);
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.