summaryrefslogtreecommitdiff
path: root/libm/double/fltest.c
blob: f2e3d866508118b9d855062f1cc985490c7806cd (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/* fltest.c
 * Test program for floor(), frexp(), ldexp()
 */

/*
Cephes Math Library Release 2.1:  December, 1988
Copyright 1984, 1987, 1988 by Stephen L. Moshier
Direct inquiries to 30 Frost Street, Cambridge, MA 02140
*/



#include <math.h>
extern double MACHEP;
#define UTH -1023

main()
{
double x, y, y0, z, f, x00, y00;
int i, j, k, e, e0;
int errfr, errld, errfl, underexp, err, errth, e00;
double frexp(), ldexp(), floor();


/*
if( 1 )
	goto flrtst;
*/

printf( "Testing frexp() and ldexp().\n" );
errfr = 0;
errld = 0;
underexp = 0;
f = 1.0;
x00 = 2.0;
y00 = 0.5;
e00 = 2;

for( j=0; j<20; j++ )
{
if( j == 10 )
	{
	f = 1.0;
	x00 = 2.0;
	e00 = 1;
/* Find 2**(2**10) / 2 */
#ifdef DEC
	for( i=0; i<5; i++ )
#else
	for( i=0; i<9; i++ )
#endif
		{
		x00 *= x00;
		e00 += e00;
		}
	y00 = x00/2.0;
	x00 = x00 * y00;
	e00 += e00;
	y00 = 0.5;
	}
x = x00 * f;
y0 = y00 * f;
e0 = e00;
for( i=0; i<2200; i++ )
	{
	x /= 2.0;
	e0 -= 1;
	if( x == 0.0 )
		{
		if( f == 1.0 )
			underexp = e0;
		y0 = 0.0;
		e0 = 0;
		}
	y = frexp( x, &e );
	if( (e0 < -1023) && (e != e0) )
		{
		if( e == (e0 - 1) )
			{
			e += 1;
			y /= 2.0;
			}
		if( e == (e0 + 1) )
			{
			e -= 1;
			y *= 2.0;
			}
		}
	err = y - y0;
	if( y0 != 0.0 )
		err /= y0;
	if( err < 0.0 )
		err = -err;
	if( e0 > -1023 )
		errth = 0.0;
	else
		{/* Denormal numbers may have rounding errors */
		if( e0 == -1023 )
			{
			errth = 2.0 * MACHEP;
			}
		else
			{
			errth *= 2.0;
			}
		}

	if( (x != 0.0) && ((err > errth) || (e != e0)) )
		{
		printf( "Test %d: ", j+1 );
		printf( " frexp( %.15e) =?= %.15e * 2**%d;", x, y, e );
		printf( " should be %.15e * 2**%d\n", y0, e0 );
		errfr += 1;
		}
	y = ldexp( x, 1-e0 );
	err = y - 1.0;
	if( err < 0.0 )
		err = -err;
	if( (err > errth) && ((x == 0.0) && (y != 0.0)) )
		{
		printf( "Test %d: ", j+1 );
		printf( "ldexp( %.15e, %d ) =?= %.15e;", x, 1-e0, y );
		if( x != 0.0 )
			printf( " should be %.15e\n", f );
		else
			printf( " should be %.15e\n", 0.0 );
		errld += 1;
		}
	if( x == 0.0 )
		{
		break;
		}
	}
f = f * 1.08005973889;
}


x = 2.22507385850720138309e-308;
for (i = 0; i < 52; i++)
  {
    y = ldexp (x, -i);
    z = ldexp (y, i);
    if (x != z)
      {
	printf ("x %.16e, i %d, y %.16e, z %.16e\n", x, i, y, z);
	errld += 1;
      }
  }


if( (errld == 0) && (errfr == 0) )
	{
	printf( "No errors found.\n" );
	}

flrtst:

printf( "Testing floor().\n" );
errfl = 0;

f = 1.0/MACHEP;
x00 = 1.0;
for( j=0; j<57; j++ )
{
x = x00 - 1.0;
for( i=0; i<128; i++ )
	{
	y = floor(x);
	if( y != x )
		{
		flierr( x, y, j );
		errfl += 1;
		}
/* Warning! the if() statement is compiler dependent,
 * since x-0.49 may be held in extra precision accumulator
 * so would never compare equal to x!  The subroutine call
 * y = floor() forces z to be stored as a double and reloaded
 * for the if() statement.
 */
	z = x - 0.49;
	y = floor(z);
	if( z == x )
		break;
	if( y != (x - 1.0) )
		{
		flierr( z, y, j );
		errfl += 1;
		}

	z = x + 0.49;
	y = floor(z);
	if( z != x )
		{
		if( y != x )
			{
			flierr( z, y, j );
			errfl += 1;
			}
		}
	x = -x;
	y = floor(x);
	if( z != x )
		{
		if( y != x )
			{
			flierr( x, y, j );
			errfl += 1;
			}
		}
	z = x + 0.49;
	y = floor(z);
	if( z != x )
		{
		if( y != x )
			{
			flierr( z, y, j );
			errfl += 1;
			}
		}
	z = x - 0.49;
	y = floor(z);
	if( z != x )
		{
		if( y != (x - 1.0) )
			{
			flierr( z, y, j );
			errfl += 1;
			}
		}
	x = -x;
	x += 1.0;
	}
x00 = x00 + x00;
}
y = floor(0.0);
if( y != 0.0 )
	{
	flierr( 0.0, y, 57 );
	errfl += 1;
	}
y = floor(-0.0);
if( y != 0.0 )
	{
	flierr( -0.0, y, 58 );
	errfl += 1;
	}
y = floor(-1.0);
if( y != -1.0 )
	{
	flierr( -1.0, y, 59 );
	errfl += 1;
	}
y = floor(-0.1);
if( y != -1.0 )
	{
	flierr( -0.1, y, 60 );
	errfl += 1;
	}

if( errfl == 0 )
	printf( "No errors found in floor().\n" );

}


flierr( x, y, k )
double x, y;
int k;
{
printf( "Test %d: ", k+1 );
printf( "floor(%.15e) =?= %.15e\n", x, y );
}