-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd1mach.c
59 lines (48 loc) · 1.55 KB
/
d1mach.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Mathlib - A Mathematical Function Library
* Copyright (C) 1998 Ross Ihaka
* Copyright (C) 2000-7 The R Core Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, a copy is available at
* http://www.r-project.org/Licenses/
*/
/* NaNs propagated correctly */
/*-- FIXME: Eliminate calls to these
* ===== o from C code when
* o it is only used to initialize "static" variables (threading)
* and use the DBL_... constants instead
*/
#include "nmath.h"
attribute_hidden double Rf_d1mach(int i)
{
switch(i) {
case 1: return DBL_MIN;
case 2: return DBL_MAX;
case 3: /* = FLT_RADIX ^ - DBL_MANT_DIG
for IEEE: = 2^-53 = 1.110223e-16 = .5*DBL_EPSILON */
return 0.5*DBL_EPSILON;
case 4: /* = FLT_RADIX ^ (1- DBL_MANT_DIG) =
for IEEE: = 2^-52 = DBL_EPSILON */
return DBL_EPSILON;
case 5: return M_LOG10_2;
default: return 0.0;
}
}
#ifdef __cplusplus
extern "C"
#endif
double F77_NAME(d1mach)(int *i)
{
return Rf_d1mach(*i);
}