-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmixed.c
219 lines (194 loc) · 4.19 KB
/
mixed.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
//
//
//
#include "mixed.h"
#include "teeterl.h"
#include "mpi.h"
#include <stdio.h>
#include <stdlib.h>
term_t add_mixed(term_t a, term_t b, heap_t *heap)
{
if (!is_int(a) && !is_bignum(a) && !is_float(a))
return noval;
if (!is_int(b) && !is_bignum(b) && !is_float(b))
return noval;
if (is_float(a) || is_float(b))
{
double fa = term_to_double(a);
double fb = term_to_double(b);
return heap_float(heap, fa + fb);
}
else
{
mp_int ma = term_to_mp(a, heap);
mp_int mb = term_to_mp(b, heap);
mp_int mc;
mp_init_size(&mc, USED(&ma), heap);
mp_add(&ma, &mb, &mc, heap);
return mp_to_term(mc);
}
}
term_t mult_mixed(term_t a, term_t b, heap_t *heap)
{
if (!is_int(a) && !is_bignum(a) && !is_float(a))
return noval;
if (!is_int(b) && !is_bignum(b) && !is_float(b))
return noval;
if (is_float(a) || is_float(b))
{
double fa = term_to_double(a);
double fb = term_to_double(b);
return heap_float(heap, fa / fb);
}
else
{
mp_int ma = term_to_mp(a, heap);
mp_int mb = term_to_mp(b, heap);
mp_int mc;
mp_init_size(&mc, USED(&ma), heap);
mp_mul(&ma, &mb, &mc, heap);
return mp_to_term(mc);
}
}
term_t sub_mixed(term_t a, term_t b, heap_t *heap)
{
if (!is_int(a) && !is_bignum(a) && !is_float(a))
return noval;
if (!is_int(b) && !is_bignum(b) && !is_float(b))
return noval;
if (is_float(a) || is_float(b))
{
double fa = term_to_double(a);
double fb = term_to_double(b);
return heap_float(heap, fa - fb);
}
else
{
mp_int ma = term_to_mp(a, heap);
mp_int mb = term_to_mp(b, heap);
mp_int mc;
mp_init_size(&mc, USED(&ma), heap);
mp_sub(&ma, &mb, &mc, heap);
return mp_to_term(mc);
}
}
term_t mod_mixed(term_t a, term_t b, heap_t *heap)
{
mp_int ma, mb, mc;
if (!is_int(a) && !is_bignum(a))
return noval;
if (!is_int(b) && !is_bignum(b))
return noval;
ma = term_to_mp(a, heap);
mb = term_to_mp(b, heap);
mp_mod(&ma, &mb, &mc, heap);
return mp_to_term(mc);
}
term_t idiv_mixed(term_t a, term_t b, heap_t *heap)
{
mp_int ma, mb, mc;
if (!is_int(a) && !is_bignum(a))
return noval;
if (!is_int(b) && !is_bignum(b))
return noval;
ma = term_to_mp(a, heap);
mb = term_to_mp(b, heap);
mp_init_size(&mc, USED(&ma), heap);
mp_div(&ma, &mb, &mc, 0, heap);
return mp_to_term(mc);
}
term_t div_mixed(term_t a, term_t b, heap_t *heap)
{
double fa, fb;
if (!is_int(a) && !is_bignum(a) && !is_float(a))
return noval;
if (!is_int(b) && !is_bignum(b) && !is_float(b))
return noval;
fa = term_to_double(a);
fb = term_to_double(b);
return heap_float(heap, fa - fb);
}
term_t bsl_mixed(term_t a, term_t b, heap_t *heap)
{
mp_int ma = term_to_mp(a, heap);
mp_int mc;
int ib;
if (!is_int(b))
return noval;
ib = int_value(b);
if (ib >= 0 && ib <= MP_DIGIT_MAX)
{
mp_digit d = (mp_digit)ib;
mp_init_size(&mc, USED(&ma), heap);
mp_mul_2d(&ma, d, &mc, heap);
return mp_to_term(mc);
}
else if (ib < 0 && -ib <= MP_DIGIT_MAX)
{
mp_digit d = (mp_digit)(-ib);
mp_init_size(&mc, USED(&ma), heap);
mp_div_2d(&ma, d, &mc, NULL, heap);
return mp_to_term(mc);
}
return noval;
}
term_t bsr_mixed(term_t a, term_t b, heap_t *heap)
{
mp_int ma = term_to_mp(a, heap);
mp_int mc;
int ib;
if (!is_int(b))
return noval;
ib = int_value(b);
if (ib >= 0 && ib <= MP_DIGIT_MAX)
{
mp_digit d = (mp_digit)ib;
mp_init_size(&mc, USED(&ma), heap);
mp_div_2d(&ma, d, &mc, NULL, heap);
return mp_to_term(mc);
}
else if (ib < 0 && -ib <= MP_DIGIT_MAX)
{
mp_digit d = (mp_digit)(-ib);
mp_init_size(&mc, USED(&ma), heap);
mp_mul_2d(&ma, d, &mc, heap);
return mp_to_term(mc);
}
return noval;
}
term_t bnot_mixed(term_t a, heap_t *heap)
{
//TODO
not_implemented("bnot_mixed");
}
term_t band_mixed(term_t a, term_t b, heap_t *heap)
{
//TODO
not_implemented("band_mixed");
}
term_t band_mixed2(term_t a, int i, heap_t *heap)
{
//TODO
not_implemented("band_mixed2");
}
term_t bor_mixed(term_t a, term_t b, heap_t *heap)
{
//TODO
not_implemented("bor_mixed");
}
term_t bor_mixed2(term_t a, int i, heap_t *heap)
{
//TODO
not_implemented("bor_mixed2");
}
term_t bxor_mixed(term_t a, term_t b, heap_t *heap)
{
//TODO
not_implemented("bxor_mixed");
}
term_t bxor_mixed2(term_t a, int i, heap_t *heap)
{
//TODO
not_implemented("bxor_mixed2");
}
//EOF