291
|
1 |
/*
|
|
2 |
* Description:
|
|
3 |
* The original NIST Statistical Test Suite code is placed in public domain.
|
|
4 |
* (http://csrc.nist.gov/groups/ST/toolkit/rng/documentation_software.html)
|
|
5 |
*
|
|
6 |
* This software was developed at the National Institute of Standards and Technology by
|
|
7 |
* employees of the Federal Government in the course of their official duties. Pursuant
|
|
8 |
* to title 17 Section 105 of the United States Code this software is not subject to
|
|
9 |
* copyright protection and is in the public domain. The NIST Statistical Test Suite is
|
|
10 |
* an experimental system. NIST assumes no responsibility whatsoever for its use by other
|
|
11 |
* parties, and makes no guarantees, expressed or implied, about its quality, reliability,
|
|
12 |
* or any other characteristic. We would appreciate acknowledgment if the software is used.
|
|
13 |
*/
|
|
14 |
|
|
15 |
#ifndef _CEPHES_H_
|
|
16 |
#define _CEPHES_H_
|
|
17 |
|
|
18 |
double cephes_igamc(double a, double x);
|
|
19 |
double cephes_igam(double a, double x);
|
|
20 |
double cephes_lgam(double x);
|
|
21 |
double cephes_p1evl(double x, double *coef, int N);
|
|
22 |
double cephes_polevl(double x, double *coef, int N);
|
|
23 |
double cephes_erf(double x);
|
|
24 |
double cephes_erfc(double x);
|
|
25 |
double cephes_normal(double x);
|
|
26 |
|
|
27 |
#endif /* _CEPHES_H_ */
|