// Standard header file for modules using floating point arithmetic
#ifndef __DECIMAL_H
#define __DECIMAL_H


#include <math.h>
#define STARTTOL 0.000000001
#define SQRT sqrt
#define ABS fabs
typedef long double decimal;
extern decimal TOL; //Tolerance



#endif

