Added prototype for evalAccLimits()
This commit is contained in:
parent
e4e2de886f
commit
c8babc9450
|
|
@ -1,14 +1,21 @@
|
|||
/**********
|
||||
Copyright 1991 Regents of the University of California. All rights reserved.
|
||||
Authors: 1987 Karti Mayaram, 1991 David Gates
|
||||
$Id$
|
||||
**********/
|
||||
|
||||
#ifndef ACCURACY_H
|
||||
#define ACCURACY_H
|
||||
|
||||
/*
|
||||
* Definitions of Globals for Machine Accuracy Limits
|
||||
*/
|
||||
#ifndef ACC_H
|
||||
#define ACC_H
|
||||
|
||||
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 */
|
||||
#endif /* ACC_H */
|
||||
|
||||
extern void evalAccLimits(void);
|
||||
|
||||
#endif /* ACCURACY_H */
|
||||
|
|
|
|||
Loading…
Reference in New Issue