-
Notifications
You must be signed in to change notification settings - Fork 0
/
symengine.adb
406 lines (353 loc) · 10.1 KB
/
symengine.adb
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
with Ada.Text_IO;
use Ada.Text_IO;
with Ada.Integer_Text_IO;
use Ada.Integer_Text_IO;
with Interfaces.C;
use Interfaces.C;
with symengine_cwrapper;
use symengine_cwrapper;
with Interfaces.C.Strings;
use Interfaces.C.Strings;
package body symengine is
procedure Initialize(self : in out Basic) is
begin
self.ptr := basic_new_heap;
end Initialize;
procedure Adjust(self : in out Basic) is
copy : cptr := basic_new_heap;
ex : long;
begin
ex := basic_assign(copy, self.ptr);
self.ptr := copy;
end Adjust;
procedure Finalize(self : in out Basic) is
begin
basic_free_heap(self.ptr);
end Finalize;
procedure handle_exception(ex : long) is
begin
case ex is
when 1 =>
raise SymEngineException with "Runtime Error";
when 2 =>
raise SymEngineException with "Division by Zero";
when 3 =>
raise SymEngineException with "Not implemented";
when 4 =>
raise SymEngineException with "Domain Error";
when 5 =>
raise SymEngineException with "Parse Error";
when others =>
null;
end case;
end handle_exception;
function to_vecbasic(x : BasicArray) return cptr is
a : cptr;
ex : long;
begin
a := vecbasic_new;
for i in x'Range loop
ex := vecbasic_push_back(a, x(i).ptr);
handle_exception(ex);
end loop;
return a;
end to_vecbasic;
function "=" (left, right : Basic'Class) return Boolean is
a : int;
begin
a := basic_eq(left.ptr, right.ptr);
return a /= 0;
end "=";
function "+" (left, right : Basic'Class) return Basic is
res : Basic;
ex : long;
begin
ex := basic_add(res.ptr, left.ptr, right.ptr);
handle_exception(ex);
return res;
end "+";
function "+" (left : Basic'Class; right : Integer) return Basic is
temp : SymInteger := new_integer(right);
begin
return left + temp;
end "+";
function "+" (left : Integer; right : Basic'Class) return Basic is
temp : SymInteger := new_integer(left);
begin
return temp + right;
end "+";
function "+" (left : Basic'Class; right : Float) return Basic is
temp : RealDouble := new_real_double(right);
begin
return left + temp;
end "+";
function "+" (left : Float; right : Basic'Class) return Basic is
temp : RealDouble := new_real_double(left);
begin
return temp + right;
end "+";
function "+" (right : Basic'Class) return Basic is
begin
return Basic(right);
end "+";
function "-" (left, right : Basic'Class) return Basic is
res : Basic;
ex : long;
begin
ex := basic_sub(res.ptr, left.ptr, right.ptr);
handle_exception(ex);
return res;
end "-";
function "-" (left : Basic'Class; right : Integer) return Basic is
temp : SymInteger := new_integer(right);
begin
return left - temp;
end "-";
function "-" (left : Integer; right : Basic'Class) return Basic is
temp : SymInteger := new_integer(left);
begin
return temp - right;
end "-";
function "-" (left : Basic'Class; right : Float) return Basic is
temp : RealDouble := new_real_double(right);
begin
return left - temp;
end "-";
function "-" (left : Float; right : Basic'Class) return Basic is
temp : RealDouble := new_real_double(left);
begin
return temp - right;
end "-";
function "-" (right : Basic'Class) return Basic is
zero : SymInteger := new_integer(0);
begin
return zero - right;
end "-";
function "*" (left, right : Basic'Class) return Basic is
res : Basic;
ex : long;
begin
ex := basic_mul(res.ptr, left.ptr, right.ptr);
handle_exception(ex);
return res;
end "*";
function "*" (left : Basic'Class; right : Integer) return Basic is
temp : SymInteger := new_integer(right);
begin
return left * temp;
end "*";
function "*" (left : Integer; right : Basic'Class) return Basic is
temp : SymInteger := new_integer(left);
begin
return temp * right;
end "*";
function "*" (left : Basic'Class; right : Float) return Basic is
temp : RealDouble := new_real_double(right);
begin
return left * temp;
end "*";
function "*" (left : Float; right : Basic'Class) return Basic is
temp : RealDouble := new_real_double(left);
begin
return temp * right;
end "*";
function "/" (left, right : Basic'Class) return Basic is
res : Basic;
ex : long;
begin
ex := basic_div(res.ptr, left.ptr, right.ptr);
handle_exception(ex);
return res;
end "/";
function "/" (left : Basic'Class; right : Integer) return Basic is
temp : SymInteger := new_integer(right);
begin
return left / temp;
end "/";
function "/" (left : Integer; right : Basic'Class) return Basic is
temp : SymInteger := new_integer(left);
begin
return temp / right;
end "/";
function "/" (left : Basic'Class; right : Float) return Basic is
temp : RealDouble := new_real_double(right);
begin
return left / temp;
end "/";
function "/" (left : Float; right : Basic'Class) return Basic is
temp : RealDouble := new_real_double(left);
begin
return temp / right;
end "/";
function "**" (left, right : Basic'Class) return Basic is
res : Basic;
ex : long;
begin
ex := basic_pow(res.ptr, left.ptr, right.ptr);
handle_exception(ex);
return res;
end "**";
function "**" (left : Basic'Class; right : Integer) return Basic is
temp : SymInteger := new_integer(right);
begin
return left ** temp;
end "**";
function "**" (left : Integer; right : Basic'Class) return Basic is
temp : SymInteger := new_integer(left);
begin
return temp ** right;
end "**";
function "**" (left : Basic'Class; right : Float) return Basic is
temp : RealDouble := new_real_double(right);
begin
return left ** temp;
end "**";
function "**" (left : Float; right : Basic'Class) return Basic is
temp : RealDouble := new_real_double(left);
begin
return temp ** right;
end "**";
function pi return Basic is
res : Basic;
begin
basic_const_pi(res.ptr);
return res;
end pi;
function e return Basic is
res : Basic;
begin
basic_const_e(res.ptr);
return res;
end e;
function "abs"(x : Basic) return Basic is
res : Basic;
ex : long;
begin
ex := basic_abs(res.ptr, x.ptr);
handle_exception(ex);
return res;
end "abs";
function log(x : Basic) return Basic is
res : Basic;
ex : long;
begin
ex := basic_log(res.ptr, x.ptr);
handle_exception(ex);
return res;
end log;
function exp(x : Basic) return Basic is
res : Basic;
ex : long;
begin
ex := basic_exp(res.ptr, x.ptr);
handle_exception(ex);
return res;
end exp;
function sin(x : Basic) return Basic is
res : Basic;
ex : long;
begin
ex := basic_sin(res.ptr, x.ptr);
handle_exception(ex);
return res;
end sin;
function cos(x : Basic) return Basic is
res : Basic;
ex : long;
begin
ex := basic_cos(res.ptr, x.ptr);
handle_exception(ex);
return res;
end cos;
function tan(x : Basic) return Basic is
res : Basic;
ex : long;
begin
ex := basic_tan(res.ptr, x.ptr);
handle_exception(ex);
return res;
end tan;
function atan2(x, y : Basic) return Basic is
res : Basic;
ex : long;
begin
ex := basic_atan2(res.ptr, x.ptr, y.ptr);
handle_exception(ex);
return res;
end atan2;
function max(a : BasicArray) return Basic is
ex : long;
vec : cptr;
res : Basic;
begin
vec := to_vecbasic(a);
ex := basic_max(res.ptr, vec);
vecbasic_free(vec);
handle_exception(ex);
return res;
end max;
function min(a : BasicArray) return Basic is
ex : long;
vec : cptr;
res : Basic;
begin
vec := to_vecbasic(a);
ex := basic_min(res.ptr, vec);
vecbasic_free(vec);
handle_exception(ex);
return res;
end min;
function str(self : Basic) return String is
sp : chars_ptr := basic_str(self.ptr);
s : string := Value(sp);
begin
basic_str_free(sp);
return s;
end str;
function parse(str : String) return Basic is
cstr : chars_ptr;
s : Basic;
ex : long;
begin
cstr := New_String(str);
ex := basic_parse(s.ptr, cstr);
Free(cstr);
handle_exception(ex);
return s;
end parse;
function new_integer(x : Integer) return SymInteger is
n : SymInteger;
ex : long;
begin
ex := integer_set_si(n.ptr, long(x));
handle_exception(ex);
return n;
end new_integer;
function new_rational(a, b : Integer) return Rational is
n : Rational;
ex : long;
begin
ex := rational_set_si(n.ptr, long(a), long(b));
handle_exception(ex);
return n;
end new_rational;
function new_real_double(x : Float) return RealDouble is
n : RealDouble;
ex : long;
begin
ex := real_double_set_d(n.ptr, double(x));
handle_exception(ex);
return n;
end new_real_double;
function new_symbol(s : String) return Symbol is
cstr : chars_ptr;
sym : Symbol;
ex : long;
begin
cstr := New_String(s);
ex := symbol_set(sym.ptr, cstr);
Free(cstr);
handle_exception(ex);
return sym;
end new_symbol;
end symengine;