ngspice/src/maths/misc/accuracy.h

24 lines
571 B
C
Raw Normal View History

/**********
Copyright 1991 Regents of the University of California. All rights reserved.
Authors: 1987 Karti Mayaram, 1991 David Gates
2005-05-31 18:37:22 +02:00
$Id$
**********/
2005-05-31 18:37:22 +02:00
#ifndef ACCURACY_H
#define ACCURACY_H
/*
* Definitions of Globals for Machine Accuracy Limits
*/
2005-05-31 18:37:22 +02:00
extern double BMin; /* lower limit for B(x) */
extern double BMax; /* upper limit for B(x) */
extern double ExpLim; /* limit for exponential */
extern double Accuracy; /* accuracy of the machine */
extern double MuLim, MutLim;
2005-05-31 18:37:22 +02:00
extern void evalAccLimits(void);
#endif /* ACCURACY_H */