23 lines
565 B
C
23 lines
565 B
C
/**********
|
|
Copyright 1991 Regents of the University of California. All rights reserved.
|
|
Authors: 1987 Karti Mayaram, 1991 David Gates
|
|
**********/
|
|
|
|
#ifndef ngspice_ACCURACY_H
|
|
#define ngspice_ACCURACY_H
|
|
|
|
/*
|
|
* Definitions of Globals for Machine Accuracy Limits
|
|
*/
|
|
|
|
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;
|
|
|
|
|
|
extern void evalAccLimits(void);
|
|
|
|
#endif
|