-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_float.c
248 lines (197 loc) · 5 KB
/
test_float.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
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
#include "float/floatn.h"
#include <time.h>
#include <float.h>
#define NTESTS 5
void test_add() {
natural nb = {}, mb ={}, rb={};
natural *n = &nb, *m = &mb, *rn=&rb;
for (int i=0; i<NTESTS; i++) {
wide x = rand();
wide y = rand();
natural_from_wide_into(x, n);
natural_from_wide_into(y, m);
floatn f = floatn_from_natural(n);
floatn g = floatn_from_natural(m);
g.sgn = NEG;
/*printf("Floats\n");*/
/*floatn_println(f);*/
/*floatn_println(g);*/
floatn r = floatn_from_natural(rn);
/*floatn_println(r);*/
floatn_add_into(f,g,&r);
if (x-y != floatn_to_wide(r)) {
printf("-----------------\n");
printf("Naturals\n");
natural_println(n);
natural_println(m);
printf("Floats\n");
floatn_println(f);
floatn_println(g);
floatn_println(r);
printf("Result: \n");
floatn_println(r);
printf("result: %ld\n", floatn_to_wide(r));
printf("expect: %ld\n", x-y);
printf("FAIL\n");
} else {
//printf("Add test passed %d\n", i);
}
free(f.man);
free(g.man);
free(r.man);
}
}
void test_divide() {
natural nb = {}, mb ={}, rb={};
natural *n = &nb, *m = &mb, *rn=&rb;
// TODO kinda weak, only one sign checked
for (int i=0; i<NTESTS; i++) {
wide x = rand();
wide y = rand();
double xd = x;
double yd = y;
natural_from_wide_into(x, n);
natural_from_wide_into(y, m);
floatn f = floatn_from_natural(n);
floatn g = floatn_from_natural(m);
/*printf("Floats preop\n");*/
/*floatn_println(f);*/
/*floatn_println(g);*/
g.sgn = NEG;
/*printf("Floats postroun\n");*/
/*floatn_println(f);*/
/*floatn_println(g);*/
floatn r = floatn_from_natural(rn);
/*floatn_println(r);*/
floatn_divide_into(f,g,&r);
double expect = xd/(-yd);
// if rel error > 0.1, shit flip
if ( (expect - floatn_to_double(r)) / expect > 0.01 ) {
printf("-----------------\n");
printf("Naturals\n");
natural_println(n);
natural_println(m);
printf("Floats\n");
floatn_println(f);
floatn_println(g);
floatn_println(r);
printf("Result: \n");
floatn_println(r);
printf("result: %f\n", floatn_to_double(r));
printf("expect: %f\n", expect);
printf("FAIL\n");
} else {
//printf("DIV test passed %d\n", i);
}
free(f.man);
free(g.man);
free(r.man);
}
}
void test_round() {
natural nb = {}, mb ={}, rb={};
natural *n = &nb, *m = &mb, *rn=&rb;
// TODO kinda weak, only one sign checked
for (int i=0; i<1; i++) {
wide x = 459997308; //100000*((double) rand())/((double) RAND_MAX);
natural_from_wide_into(x, n);
floatn f = floatn_from_natural(n);
f.sgn = NEG;
int s = 4; // number of digits to round to
// this may break in other bases
floatn_round_ip(&f, s);
if (true) {
printf("wide: %ld\n", x);
printf("Float, rounded\n");
floatn_println(f);
printf("floatn: %f\n", floatn_to_double(f));
}
printf("\n");
/*floatn_println(r);*/
free(f.man);
}
}
void test_multiply() {
natural nb = {}, mb ={}, rb={};
natural *n = &nb, *m = &mb, *rn=&rb;
// TODO kinda weak, only one sign checked
for (int i=0; i<NTESTS; i++) {
wide x = rand();
wide y = rand();
natural_from_wide_into(x, n);
natural_from_wide_into(y, m);
floatn f = floatn_from_natural(n);
floatn g = floatn_from_natural(m);
g.sgn = NEG;
/*printf("Floats\n");*/
/*floatn_println(f);*/
/*floatn_println(g);*/
floatn r = floatn_from_natural(rn);
/*floatn_println(r);*/
floatn_multiply_into(f,g,&r);
if ( ((double) x*(-y)-floatn_to_wide(r))/(x*(-y)) > 0.01 ) {
printf("-----------------\n");
printf("Naturals\n");
natural_println(n);
natural_println(m);
printf("Floats\n");
floatn_println(f);
floatn_println(g);
floatn_println(r);
printf("Result: \n");
floatn_println(r);
printf("result: %ld\n", floatn_to_wide(r));
printf("expect: %ld\n", x*(-y));
printf("FAIL\n");
} else {
//printf("Mult test passed %d\n", i);
}
free(f.man);
free(g.man);
free(r.man);
}
}
void test_pow() {
natural nb = {}, mb ={}, rb={};
natural *n = &nb, *m = &mb, *rn=&rb;
// TODO kinda weak, only one sign checked
for (int i=0; i<NTESTS; i++) {
wide x = rand();
int y = 13;
natural_from_wide_into(x, n);
floatn f = floatn_from_natural(n);
/*printf("Floats\n");*/
floatn_println(f);
printf("f->c: %d\n", f.man->c);
floatn r = floatn_from_natural(rn);
floatn_pow_into(f,y,&r);
floatn_println(r);
printf("r->c: %d\n", f.man->c);
printf("result: %f\n", floatn_to_double(r));
printf("expect: %f\n", pow(-x,y));
if ((pow(-x,y) - floatn_to_double(r))/pow(x,y) > 0.1) {
printf("-----------------\n");
printf("Naturals\n");
natural_println(n);
printf("Floats\n");
floatn_println(f);
printf("Result: \n");
floatn_println(r);
printf("result: %f\n", floatn_to_double(r));
printf("expect: %f\n", pow(-x,y));
printf("FAIL\n");
} else {
//printf("Pow test passed %d\n", i);
}
free(f.man);
free(r.man);
}
}
void main(int argc, char *argv[]) {
srand(time(NULL));
/*test_add();*/
/*test_multiply();*/
/*test_divide();*/
test_pow();
/*test_round();*/
}