Added prototype for evalAccLimits()

This commit is contained in:
sjborley 2005-05-31 16:37:22 +00:00
parent e4e2de886f
commit c8babc9450
1 changed files with 10 additions and 3 deletions

View File

@ -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 */