/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* not APL2 V1.0.0 *****************************************************
* Returns 1.0 or 0.0 depending on the logical NOT of rite. *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
int not(rite)
double rite;
{
extern double fuzz;
return(((rite > 0.0-fuzz) && (rite < fuzz)));
}