z3 0.0.20160427 → 0.0.20161008
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rspec +2 -0
- data/Rakefile +56 -0
- data/examples/bit_tricks +21 -38
- data/examples/circuit_problems +170 -0
- data/lib/z3/ast.rb +21 -3
- data/lib/z3/context.rb +9 -7
- data/lib/z3/exception.rb +1 -2
- data/lib/z3/expr/arith_expr.rb +29 -11
- data/lib/z3/expr/array_expr.rb +5 -0
- data/lib/z3/expr/bitvec_expr.rb +293 -13
- data/lib/z3/expr/bool_expr.rb +30 -6
- data/lib/z3/expr/expr.rb +155 -2
- data/lib/z3/expr/float_expr.rb +185 -0
- data/lib/z3/expr/int_expr.rb +20 -5
- data/lib/z3/expr/real_expr.rb +1 -3
- data/lib/z3/expr/rounding_mode_expr.rb +5 -0
- data/lib/z3/expr/set_expr.rb +66 -0
- data/lib/z3/func_decl.rb +5 -5
- data/lib/z3/goal.rb +64 -0
- data/lib/z3/interface.rb +21 -222
- data/lib/z3/low_level.rb +84 -58
- data/lib/z3/low_level_auto.rb +1509 -1563
- data/lib/z3/model.rb +39 -37
- data/lib/z3/printer.rb +54 -12
- data/lib/z3/probe.rb +69 -0
- data/lib/z3/solver.rb +20 -20
- data/lib/z3/sort/array_sort.rb +24 -0
- data/lib/z3/sort/bitvec_sort.rb +1 -1
- data/lib/z3/sort/float_sort.rb +92 -0
- data/lib/z3/sort/rounding_mode_sort.rb +41 -0
- data/lib/z3/sort/set_sort.rb +31 -0
- data/lib/z3/sort/sort.rb +39 -5
- data/lib/z3/tactic.rb +69 -0
- data/lib/z3/very_low_level.rb +33 -29
- data/lib/z3/very_low_level_auto.rb +505 -517
- data/lib/z3.rb +13 -0
- data/spec/array_expr_spec.rb +18 -0
- data/spec/array_sort_spec.rb +11 -0
- data/spec/bitvec_expr_spec.rb +196 -44
- data/spec/bitvec_sort_spec.rb +29 -27
- data/spec/bool_expr_spec.rb +57 -55
- data/spec/bool_sort_spec.rb +17 -15
- data/spec/coverage_helper.rb +11 -0
- data/spec/expr_spec.rb +151 -147
- data/spec/float_expr_spec.rb +167 -0
- data/spec/float_sort_spec.rb +44 -0
- data/spec/goal_spec.rb +17 -0
- data/spec/int_expr_spec.rb +76 -63
- data/spec/int_sort_spec.rb +16 -14
- data/spec/integration/algebra_problems_spec.rb +4 -4
- data/spec/integration/cicruit_problem_spec.rb +23 -0
- data/spec/integration/geometry_problem_spec.rb +4 -4
- data/spec/integration/kinematics_problems_spec.rb +3 -3
- data/spec/model_spec.rb +39 -37
- data/spec/printer_spec.rb +49 -18
- data/spec/probe_spec.rb +17 -0
- data/spec/real_expr_spec.rb +59 -51
- data/spec/real_sort_spec.rb +22 -20
- data/spec/rounding_mode_expr_spec.rb +16 -0
- data/spec/rounding_mode_sort_spec.rb +13 -0
- data/spec/set_expr_spec.rb +61 -0
- data/spec/set_sort_spec.rb +27 -0
- data/spec/solver_spec.rb +37 -27
- data/spec/sort_spec.rb +38 -36
- data/spec/spec_helper.rb +59 -2
- data/spec/tactic_spec.rb +9 -0
- metadata +44 -4
|
@@ -1,518 +1,506 @@
|
|
|
1
|
-
module Z3
|
|
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
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
attach_function :Z3_tactic_or_else, [:ctx_pointer, :tactic_pointer, :tactic_pointer], :tactic_pointer
|
|
507
|
-
attach_function :Z3_tactic_par_and_then, [:ctx_pointer, :tactic_pointer, :tactic_pointer], :tactic_pointer
|
|
508
|
-
attach_function :Z3_tactic_repeat, [:ctx_pointer, :tactic_pointer, :uint], :tactic_pointer
|
|
509
|
-
attach_function :Z3_tactic_skip, [:ctx_pointer], :tactic_pointer
|
|
510
|
-
attach_function :Z3_tactic_try_for, [:ctx_pointer, :tactic_pointer, :uint], :tactic_pointer
|
|
511
|
-
attach_function :Z3_tactic_using_params, [:ctx_pointer, :tactic_pointer, :params_pointer], :tactic_pointer
|
|
512
|
-
attach_function :Z3_tactic_when, [:ctx_pointer, :probe_pointer, :tactic_pointer], :tactic_pointer
|
|
513
|
-
attach_function :Z3_to_app, [:ctx_pointer, :ast_pointer], :app_pointer
|
|
514
|
-
attach_function :Z3_to_func_decl, [:ctx_pointer, :ast_pointer], :func_decl_pointer
|
|
515
|
-
attach_function :Z3_toggle_warning_messages, [:bool], :void
|
|
516
|
-
attach_function :Z3_translate, [:ctx_pointer, :ast_pointer, :ctx_pointer], :ast_pointer
|
|
517
|
-
attach_function :Z3_update_param_value, [:ctx_pointer, :string, :string], :void
|
|
1
|
+
module Z3
|
|
2
|
+
module VeryLowLevel
|
|
3
|
+
attach_function :Z3_algebraic_add, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
4
|
+
attach_function :Z3_algebraic_div, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
5
|
+
attach_function :Z3_algebraic_eq, [:ctx_pointer, :ast_pointer, :ast_pointer], :bool
|
|
6
|
+
attach_function :Z3_algebraic_ge, [:ctx_pointer, :ast_pointer, :ast_pointer], :bool
|
|
7
|
+
attach_function :Z3_algebraic_gt, [:ctx_pointer, :ast_pointer, :ast_pointer], :bool
|
|
8
|
+
attach_function :Z3_algebraic_is_neg, [:ctx_pointer, :ast_pointer], :bool
|
|
9
|
+
attach_function :Z3_algebraic_is_pos, [:ctx_pointer, :ast_pointer], :bool
|
|
10
|
+
attach_function :Z3_algebraic_is_value, [:ctx_pointer, :ast_pointer], :bool
|
|
11
|
+
attach_function :Z3_algebraic_is_zero, [:ctx_pointer, :ast_pointer], :bool
|
|
12
|
+
attach_function :Z3_algebraic_le, [:ctx_pointer, :ast_pointer, :ast_pointer], :bool
|
|
13
|
+
attach_function :Z3_algebraic_lt, [:ctx_pointer, :ast_pointer, :ast_pointer], :bool
|
|
14
|
+
attach_function :Z3_algebraic_mul, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
15
|
+
attach_function :Z3_algebraic_neq, [:ctx_pointer, :ast_pointer, :ast_pointer], :bool
|
|
16
|
+
attach_function :Z3_algebraic_power, [:ctx_pointer, :ast_pointer, :uint], :ast_pointer
|
|
17
|
+
attach_function :Z3_algebraic_root, [:ctx_pointer, :ast_pointer, :uint], :ast_pointer
|
|
18
|
+
attach_function :Z3_algebraic_sign, [:ctx_pointer, :ast_pointer], :int
|
|
19
|
+
attach_function :Z3_algebraic_sub, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
20
|
+
attach_function :Z3_apply_result_convert_model, [:ctx_pointer, :apply_result_pointer, :uint, :model_pointer], :model_pointer
|
|
21
|
+
attach_function :Z3_apply_result_dec_ref, [:ctx_pointer, :apply_result_pointer], :void
|
|
22
|
+
attach_function :Z3_apply_result_get_num_subgoals, [:ctx_pointer, :apply_result_pointer], :uint
|
|
23
|
+
attach_function :Z3_apply_result_get_subgoal, [:ctx_pointer, :apply_result_pointer, :uint], :goal_pointer
|
|
24
|
+
attach_function :Z3_apply_result_inc_ref, [:ctx_pointer, :apply_result_pointer], :void
|
|
25
|
+
attach_function :Z3_apply_result_to_string, [:ctx_pointer, :apply_result_pointer], :string
|
|
26
|
+
attach_function :Z3_ast_map_contains, [:ctx_pointer, :ast_map_pointer, :ast_pointer], :bool
|
|
27
|
+
attach_function :Z3_ast_map_dec_ref, [:ctx_pointer, :ast_map_pointer], :void
|
|
28
|
+
attach_function :Z3_ast_map_erase, [:ctx_pointer, :ast_map_pointer, :ast_pointer], :void
|
|
29
|
+
attach_function :Z3_ast_map_find, [:ctx_pointer, :ast_map_pointer, :ast_pointer], :ast_pointer
|
|
30
|
+
attach_function :Z3_ast_map_inc_ref, [:ctx_pointer, :ast_map_pointer], :void
|
|
31
|
+
attach_function :Z3_ast_map_insert, [:ctx_pointer, :ast_map_pointer, :ast_pointer, :ast_pointer], :void
|
|
32
|
+
attach_function :Z3_ast_map_keys, [:ctx_pointer, :ast_map_pointer], :ast_vector_pointer
|
|
33
|
+
attach_function :Z3_ast_map_reset, [:ctx_pointer, :ast_map_pointer], :void
|
|
34
|
+
attach_function :Z3_ast_map_size, [:ctx_pointer, :ast_map_pointer], :uint
|
|
35
|
+
attach_function :Z3_ast_map_to_string, [:ctx_pointer, :ast_map_pointer], :string
|
|
36
|
+
attach_function :Z3_ast_to_string, [:ctx_pointer, :ast_pointer], :string
|
|
37
|
+
attach_function :Z3_ast_vector_dec_ref, [:ctx_pointer, :ast_vector_pointer], :void
|
|
38
|
+
attach_function :Z3_ast_vector_get, [:ctx_pointer, :ast_vector_pointer, :uint], :ast_pointer
|
|
39
|
+
attach_function :Z3_ast_vector_inc_ref, [:ctx_pointer, :ast_vector_pointer], :void
|
|
40
|
+
attach_function :Z3_ast_vector_push, [:ctx_pointer, :ast_vector_pointer, :ast_pointer], :void
|
|
41
|
+
attach_function :Z3_ast_vector_resize, [:ctx_pointer, :ast_vector_pointer, :uint], :void
|
|
42
|
+
attach_function :Z3_ast_vector_set, [:ctx_pointer, :ast_vector_pointer, :uint, :ast_pointer], :void
|
|
43
|
+
attach_function :Z3_ast_vector_size, [:ctx_pointer, :ast_vector_pointer], :uint
|
|
44
|
+
attach_function :Z3_ast_vector_to_string, [:ctx_pointer, :ast_vector_pointer], :string
|
|
45
|
+
attach_function :Z3_ast_vector_translate, [:ctx_pointer, :ast_vector_pointer, :ctx_pointer], :ast_vector_pointer
|
|
46
|
+
attach_function :Z3_datatype_update_field, [:ctx_pointer, :func_decl_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
47
|
+
attach_function :Z3_dec_ref, [:ctx_pointer, :ast_pointer], :void
|
|
48
|
+
attach_function :Z3_del_config, [:config_pointer], :void
|
|
49
|
+
attach_function :Z3_del_constructor, [:ctx_pointer, :constructor_pointer], :void
|
|
50
|
+
attach_function :Z3_del_constructor_list, [:ctx_pointer, :constructor_list_pointer], :void
|
|
51
|
+
attach_function :Z3_del_context, [:ctx_pointer], :void
|
|
52
|
+
attach_function :Z3_disable_trace, [:string], :void
|
|
53
|
+
attach_function :Z3_enable_trace, [:string], :void
|
|
54
|
+
attach_function :Z3_finalize_memory, [], :void
|
|
55
|
+
attach_function :Z3_fixedpoint_add_cover, [:ctx_pointer, :fixedpoint_pointer, :int, :func_decl_pointer, :ast_pointer], :void
|
|
56
|
+
attach_function :Z3_fixedpoint_add_rule, [:ctx_pointer, :fixedpoint_pointer, :ast_pointer, :symbol_pointer], :void
|
|
57
|
+
attach_function :Z3_fixedpoint_assert, [:ctx_pointer, :fixedpoint_pointer, :ast_pointer], :void
|
|
58
|
+
attach_function :Z3_fixedpoint_dec_ref, [:ctx_pointer, :fixedpoint_pointer], :void
|
|
59
|
+
attach_function :Z3_fixedpoint_from_file, [:ctx_pointer, :fixedpoint_pointer, :string], :ast_vector_pointer
|
|
60
|
+
attach_function :Z3_fixedpoint_from_string, [:ctx_pointer, :fixedpoint_pointer, :string], :ast_vector_pointer
|
|
61
|
+
attach_function :Z3_fixedpoint_get_answer, [:ctx_pointer, :fixedpoint_pointer], :ast_pointer
|
|
62
|
+
attach_function :Z3_fixedpoint_get_assertions, [:ctx_pointer, :fixedpoint_pointer], :ast_vector_pointer
|
|
63
|
+
attach_function :Z3_fixedpoint_get_cover_delta, [:ctx_pointer, :fixedpoint_pointer, :int, :func_decl_pointer], :ast_pointer
|
|
64
|
+
attach_function :Z3_fixedpoint_get_help, [:ctx_pointer, :fixedpoint_pointer], :string
|
|
65
|
+
attach_function :Z3_fixedpoint_get_num_levels, [:ctx_pointer, :fixedpoint_pointer, :func_decl_pointer], :uint
|
|
66
|
+
attach_function :Z3_fixedpoint_get_param_descrs, [:ctx_pointer, :fixedpoint_pointer], :param_descrs_pointer
|
|
67
|
+
attach_function :Z3_fixedpoint_get_reason_unknown, [:ctx_pointer, :fixedpoint_pointer], :string
|
|
68
|
+
attach_function :Z3_fixedpoint_get_rules, [:ctx_pointer, :fixedpoint_pointer], :ast_vector_pointer
|
|
69
|
+
attach_function :Z3_fixedpoint_get_statistics, [:ctx_pointer, :fixedpoint_pointer], :stats_pointer
|
|
70
|
+
attach_function :Z3_fixedpoint_inc_ref, [:ctx_pointer, :fixedpoint_pointer], :void
|
|
71
|
+
attach_function :Z3_fixedpoint_pop, [:ctx_pointer, :fixedpoint_pointer], :void
|
|
72
|
+
attach_function :Z3_fixedpoint_push, [:ctx_pointer, :fixedpoint_pointer], :void
|
|
73
|
+
attach_function :Z3_fixedpoint_query, [:ctx_pointer, :fixedpoint_pointer, :ast_pointer], :int
|
|
74
|
+
attach_function :Z3_fixedpoint_register_relation, [:ctx_pointer, :fixedpoint_pointer, :func_decl_pointer], :void
|
|
75
|
+
attach_function :Z3_fixedpoint_set_params, [:ctx_pointer, :fixedpoint_pointer, :params_pointer], :void
|
|
76
|
+
attach_function :Z3_fixedpoint_update_rule, [:ctx_pointer, :fixedpoint_pointer, :ast_pointer, :symbol_pointer], :void
|
|
77
|
+
attach_function :Z3_fpa_get_ebits, [:ctx_pointer, :sort_pointer], :uint
|
|
78
|
+
attach_function :Z3_fpa_get_numeral_exponent_string, [:ctx_pointer, :ast_pointer], :string
|
|
79
|
+
attach_function :Z3_fpa_get_numeral_significand_string, [:ctx_pointer, :ast_pointer], :string
|
|
80
|
+
attach_function :Z3_fpa_get_sbits, [:ctx_pointer, :sort_pointer], :uint
|
|
81
|
+
attach_function :Z3_func_entry_dec_ref, [:ctx_pointer, :func_entry_pointer], :void
|
|
82
|
+
attach_function :Z3_func_entry_get_arg, [:ctx_pointer, :func_entry_pointer, :uint], :ast_pointer
|
|
83
|
+
attach_function :Z3_func_entry_get_num_args, [:ctx_pointer, :func_entry_pointer], :uint
|
|
84
|
+
attach_function :Z3_func_entry_get_value, [:ctx_pointer, :func_entry_pointer], :ast_pointer
|
|
85
|
+
attach_function :Z3_func_entry_inc_ref, [:ctx_pointer, :func_entry_pointer], :void
|
|
86
|
+
attach_function :Z3_func_interp_dec_ref, [:ctx_pointer, :func_interp_pointer], :void
|
|
87
|
+
attach_function :Z3_func_interp_get_arity, [:ctx_pointer, :func_interp_pointer], :uint
|
|
88
|
+
attach_function :Z3_func_interp_get_else, [:ctx_pointer, :func_interp_pointer], :ast_pointer
|
|
89
|
+
attach_function :Z3_func_interp_get_entry, [:ctx_pointer, :func_interp_pointer, :uint], :func_entry_pointer
|
|
90
|
+
attach_function :Z3_func_interp_get_num_entries, [:ctx_pointer, :func_interp_pointer], :uint
|
|
91
|
+
attach_function :Z3_func_interp_inc_ref, [:ctx_pointer, :func_interp_pointer], :void
|
|
92
|
+
attach_function :Z3_get_algebraic_number_lower, [:ctx_pointer, :ast_pointer, :uint], :ast_pointer
|
|
93
|
+
attach_function :Z3_get_algebraic_number_upper, [:ctx_pointer, :ast_pointer, :uint], :ast_pointer
|
|
94
|
+
attach_function :Z3_get_app_arg, [:ctx_pointer, :app_pointer, :uint], :ast_pointer
|
|
95
|
+
attach_function :Z3_get_app_decl, [:ctx_pointer, :app_pointer], :func_decl_pointer
|
|
96
|
+
attach_function :Z3_get_app_num_args, [:ctx_pointer, :app_pointer], :uint
|
|
97
|
+
attach_function :Z3_get_arity, [:ctx_pointer, :func_decl_pointer], :uint
|
|
98
|
+
attach_function :Z3_get_array_sort_domain, [:ctx_pointer, :sort_pointer], :sort_pointer
|
|
99
|
+
attach_function :Z3_get_array_sort_range, [:ctx_pointer, :sort_pointer], :sort_pointer
|
|
100
|
+
attach_function :Z3_get_as_array_func_decl, [:ctx_pointer, :ast_pointer], :func_decl_pointer
|
|
101
|
+
attach_function :Z3_get_ast_hash, [:ctx_pointer, :ast_pointer], :uint
|
|
102
|
+
attach_function :Z3_get_ast_id, [:ctx_pointer, :ast_pointer], :uint
|
|
103
|
+
attach_function :Z3_get_ast_kind, [:ctx_pointer, :ast_pointer], :uint
|
|
104
|
+
attach_function :Z3_get_bool_value, [:ctx_pointer, :ast_pointer], :int
|
|
105
|
+
attach_function :Z3_get_bv_sort_size, [:ctx_pointer, :sort_pointer], :uint
|
|
106
|
+
attach_function :Z3_get_datatype_sort_constructor, [:ctx_pointer, :sort_pointer, :uint], :func_decl_pointer
|
|
107
|
+
attach_function :Z3_get_datatype_sort_constructor_accessor, [:ctx_pointer, :sort_pointer, :uint, :uint], :func_decl_pointer
|
|
108
|
+
attach_function :Z3_get_datatype_sort_num_constructors, [:ctx_pointer, :sort_pointer], :uint
|
|
109
|
+
attach_function :Z3_get_datatype_sort_recognizer, [:ctx_pointer, :sort_pointer, :uint], :func_decl_pointer
|
|
110
|
+
attach_function :Z3_get_decl_ast_parameter, [:ctx_pointer, :func_decl_pointer, :uint], :ast_pointer
|
|
111
|
+
attach_function :Z3_get_decl_double_parameter, [:ctx_pointer, :func_decl_pointer, :uint], :double
|
|
112
|
+
attach_function :Z3_get_decl_func_decl_parameter, [:ctx_pointer, :func_decl_pointer, :uint], :func_decl_pointer
|
|
113
|
+
attach_function :Z3_get_decl_int_parameter, [:ctx_pointer, :func_decl_pointer, :uint], :int
|
|
114
|
+
attach_function :Z3_get_decl_kind, [:ctx_pointer, :func_decl_pointer], :uint
|
|
115
|
+
attach_function :Z3_get_decl_name, [:ctx_pointer, :func_decl_pointer], :symbol_pointer
|
|
116
|
+
attach_function :Z3_get_decl_num_parameters, [:ctx_pointer, :func_decl_pointer], :uint
|
|
117
|
+
attach_function :Z3_get_decl_parameter_kind, [:ctx_pointer, :func_decl_pointer, :uint], :uint
|
|
118
|
+
attach_function :Z3_get_decl_rational_parameter, [:ctx_pointer, :func_decl_pointer, :uint], :string
|
|
119
|
+
attach_function :Z3_get_decl_sort_parameter, [:ctx_pointer, :func_decl_pointer, :uint], :sort_pointer
|
|
120
|
+
attach_function :Z3_get_decl_symbol_parameter, [:ctx_pointer, :func_decl_pointer, :uint], :symbol_pointer
|
|
121
|
+
attach_function :Z3_get_denominator, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
122
|
+
attach_function :Z3_get_domain, [:ctx_pointer, :func_decl_pointer, :uint], :sort_pointer
|
|
123
|
+
attach_function :Z3_get_domain_size, [:ctx_pointer, :func_decl_pointer], :uint
|
|
124
|
+
attach_function :Z3_get_error_code, [:ctx_pointer], :uint
|
|
125
|
+
attach_function :Z3_get_func_decl_id, [:ctx_pointer, :func_decl_pointer], :uint
|
|
126
|
+
attach_function :Z3_get_index_value, [:ctx_pointer, :ast_pointer], :uint
|
|
127
|
+
attach_function :Z3_get_interpolant, [:ctx_pointer, :ast_pointer, :ast_pointer, :params_pointer], :ast_vector_pointer
|
|
128
|
+
attach_function :Z3_get_num_probes, [:ctx_pointer], :uint
|
|
129
|
+
attach_function :Z3_get_num_tactics, [:ctx_pointer], :uint
|
|
130
|
+
attach_function :Z3_get_numeral_decimal_string, [:ctx_pointer, :ast_pointer, :uint], :string
|
|
131
|
+
attach_function :Z3_get_numeral_string, [:ctx_pointer, :ast_pointer], :string
|
|
132
|
+
attach_function :Z3_get_numerator, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
133
|
+
attach_function :Z3_get_pattern, [:ctx_pointer, :pattern_pointer, :uint], :ast_pointer
|
|
134
|
+
attach_function :Z3_get_pattern_num_terms, [:ctx_pointer, :pattern_pointer], :uint
|
|
135
|
+
attach_function :Z3_get_probe_name, [:ctx_pointer, :uint], :string
|
|
136
|
+
attach_function :Z3_get_quantifier_body, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
137
|
+
attach_function :Z3_get_quantifier_bound_name, [:ctx_pointer, :ast_pointer, :uint], :symbol_pointer
|
|
138
|
+
attach_function :Z3_get_quantifier_bound_sort, [:ctx_pointer, :ast_pointer, :uint], :sort_pointer
|
|
139
|
+
attach_function :Z3_get_quantifier_no_pattern_ast, [:ctx_pointer, :ast_pointer, :uint], :ast_pointer
|
|
140
|
+
attach_function :Z3_get_quantifier_num_bound, [:ctx_pointer, :ast_pointer], :uint
|
|
141
|
+
attach_function :Z3_get_quantifier_num_no_patterns, [:ctx_pointer, :ast_pointer], :uint
|
|
142
|
+
attach_function :Z3_get_quantifier_num_patterns, [:ctx_pointer, :ast_pointer], :uint
|
|
143
|
+
attach_function :Z3_get_quantifier_pattern_ast, [:ctx_pointer, :ast_pointer, :uint], :pattern_pointer
|
|
144
|
+
attach_function :Z3_get_quantifier_weight, [:ctx_pointer, :ast_pointer], :uint
|
|
145
|
+
attach_function :Z3_get_range, [:ctx_pointer, :func_decl_pointer], :sort_pointer
|
|
146
|
+
attach_function :Z3_get_relation_arity, [:ctx_pointer, :sort_pointer], :uint
|
|
147
|
+
attach_function :Z3_get_relation_column, [:ctx_pointer, :sort_pointer, :uint], :sort_pointer
|
|
148
|
+
attach_function :Z3_get_smtlib_assumption, [:ctx_pointer, :uint], :ast_pointer
|
|
149
|
+
attach_function :Z3_get_smtlib_decl, [:ctx_pointer, :uint], :func_decl_pointer
|
|
150
|
+
attach_function :Z3_get_smtlib_error, [:ctx_pointer], :string
|
|
151
|
+
attach_function :Z3_get_smtlib_formula, [:ctx_pointer, :uint], :ast_pointer
|
|
152
|
+
attach_function :Z3_get_smtlib_num_assumptions, [:ctx_pointer], :uint
|
|
153
|
+
attach_function :Z3_get_smtlib_num_decls, [:ctx_pointer], :uint
|
|
154
|
+
attach_function :Z3_get_smtlib_num_formulas, [:ctx_pointer], :uint
|
|
155
|
+
attach_function :Z3_get_smtlib_num_sorts, [:ctx_pointer], :uint
|
|
156
|
+
attach_function :Z3_get_smtlib_sort, [:ctx_pointer, :uint], :sort_pointer
|
|
157
|
+
attach_function :Z3_get_sort, [:ctx_pointer, :ast_pointer], :sort_pointer
|
|
158
|
+
attach_function :Z3_get_sort_id, [:ctx_pointer, :sort_pointer], :uint
|
|
159
|
+
attach_function :Z3_get_sort_kind, [:ctx_pointer, :sort_pointer], :uint
|
|
160
|
+
attach_function :Z3_get_sort_name, [:ctx_pointer, :sort_pointer], :symbol_pointer
|
|
161
|
+
attach_function :Z3_get_symbol_int, [:ctx_pointer, :symbol_pointer], :int
|
|
162
|
+
attach_function :Z3_get_symbol_kind, [:ctx_pointer, :symbol_pointer], :uint
|
|
163
|
+
attach_function :Z3_get_symbol_string, [:ctx_pointer, :symbol_pointer], :string
|
|
164
|
+
attach_function :Z3_get_tactic_name, [:ctx_pointer, :uint], :string
|
|
165
|
+
attach_function :Z3_get_tuple_sort_field_decl, [:ctx_pointer, :sort_pointer, :uint], :func_decl_pointer
|
|
166
|
+
attach_function :Z3_get_tuple_sort_mk_decl, [:ctx_pointer, :sort_pointer], :func_decl_pointer
|
|
167
|
+
attach_function :Z3_get_tuple_sort_num_fields, [:ctx_pointer, :sort_pointer], :uint
|
|
168
|
+
attach_function :Z3_global_param_reset_all, [], :void
|
|
169
|
+
attach_function :Z3_global_param_set, [:string, :string], :void
|
|
170
|
+
attach_function :Z3_goal_assert, [:ctx_pointer, :goal_pointer, :ast_pointer], :void
|
|
171
|
+
attach_function :Z3_goal_dec_ref, [:ctx_pointer, :goal_pointer], :void
|
|
172
|
+
attach_function :Z3_goal_depth, [:ctx_pointer, :goal_pointer], :uint
|
|
173
|
+
attach_function :Z3_goal_formula, [:ctx_pointer, :goal_pointer, :uint], :ast_pointer
|
|
174
|
+
attach_function :Z3_goal_inc_ref, [:ctx_pointer, :goal_pointer], :void
|
|
175
|
+
attach_function :Z3_goal_inconsistent, [:ctx_pointer, :goal_pointer], :bool
|
|
176
|
+
attach_function :Z3_goal_is_decided_sat, [:ctx_pointer, :goal_pointer], :bool
|
|
177
|
+
attach_function :Z3_goal_is_decided_unsat, [:ctx_pointer, :goal_pointer], :bool
|
|
178
|
+
attach_function :Z3_goal_num_exprs, [:ctx_pointer, :goal_pointer], :uint
|
|
179
|
+
attach_function :Z3_goal_precision, [:ctx_pointer, :goal_pointer], :uint
|
|
180
|
+
attach_function :Z3_goal_reset, [:ctx_pointer, :goal_pointer], :void
|
|
181
|
+
attach_function :Z3_goal_size, [:ctx_pointer, :goal_pointer], :uint
|
|
182
|
+
attach_function :Z3_goal_to_string, [:ctx_pointer, :goal_pointer], :string
|
|
183
|
+
attach_function :Z3_goal_translate, [:ctx_pointer, :goal_pointer, :ctx_pointer], :goal_pointer
|
|
184
|
+
attach_function :Z3_inc_ref, [:ctx_pointer, :ast_pointer], :void
|
|
185
|
+
attach_function :Z3_interpolation_profile, [:ctx_pointer], :string
|
|
186
|
+
attach_function :Z3_interrupt, [:ctx_pointer], :void
|
|
187
|
+
attach_function :Z3_is_algebraic_number, [:ctx_pointer, :ast_pointer], :bool
|
|
188
|
+
attach_function :Z3_is_app, [:ctx_pointer, :ast_pointer], :bool
|
|
189
|
+
attach_function :Z3_is_as_array, [:ctx_pointer, :ast_pointer], :bool
|
|
190
|
+
attach_function :Z3_is_eq_ast, [:ctx_pointer, :ast_pointer, :ast_pointer], :bool
|
|
191
|
+
attach_function :Z3_is_eq_func_decl, [:ctx_pointer, :func_decl_pointer, :func_decl_pointer], :bool
|
|
192
|
+
attach_function :Z3_is_eq_sort, [:ctx_pointer, :sort_pointer, :sort_pointer], :bool
|
|
193
|
+
attach_function :Z3_is_numeral_ast, [:ctx_pointer, :ast_pointer], :bool
|
|
194
|
+
attach_function :Z3_is_quantifier_forall, [:ctx_pointer, :ast_pointer], :bool
|
|
195
|
+
attach_function :Z3_is_well_sorted, [:ctx_pointer, :ast_pointer], :bool
|
|
196
|
+
attach_function :Z3_mk_array_default, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
197
|
+
attach_function :Z3_mk_array_sort, [:ctx_pointer, :sort_pointer, :sort_pointer], :sort_pointer
|
|
198
|
+
attach_function :Z3_mk_ast_map, [:ctx_pointer], :ast_map_pointer
|
|
199
|
+
attach_function :Z3_mk_ast_vector, [:ctx_pointer], :ast_vector_pointer
|
|
200
|
+
attach_function :Z3_mk_bool_sort, [:ctx_pointer], :sort_pointer
|
|
201
|
+
attach_function :Z3_mk_bound, [:ctx_pointer, :uint, :sort_pointer], :ast_pointer
|
|
202
|
+
attach_function :Z3_mk_bv2int, [:ctx_pointer, :ast_pointer, :bool], :ast_pointer
|
|
203
|
+
attach_function :Z3_mk_bv_sort, [:ctx_pointer, :uint], :sort_pointer
|
|
204
|
+
attach_function :Z3_mk_bvadd, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
205
|
+
attach_function :Z3_mk_bvadd_no_overflow, [:ctx_pointer, :ast_pointer, :ast_pointer, :bool], :ast_pointer
|
|
206
|
+
attach_function :Z3_mk_bvadd_no_underflow, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
207
|
+
attach_function :Z3_mk_bvand, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
208
|
+
attach_function :Z3_mk_bvashr, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
209
|
+
attach_function :Z3_mk_bvlshr, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
210
|
+
attach_function :Z3_mk_bvmul, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
211
|
+
attach_function :Z3_mk_bvmul_no_overflow, [:ctx_pointer, :ast_pointer, :ast_pointer, :bool], :ast_pointer
|
|
212
|
+
attach_function :Z3_mk_bvmul_no_underflow, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
213
|
+
attach_function :Z3_mk_bvnand, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
214
|
+
attach_function :Z3_mk_bvneg, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
215
|
+
attach_function :Z3_mk_bvneg_no_overflow, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
216
|
+
attach_function :Z3_mk_bvnor, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
217
|
+
attach_function :Z3_mk_bvnot, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
218
|
+
attach_function :Z3_mk_bvor, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
219
|
+
attach_function :Z3_mk_bvredand, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
220
|
+
attach_function :Z3_mk_bvredor, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
221
|
+
attach_function :Z3_mk_bvsdiv, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
222
|
+
attach_function :Z3_mk_bvsdiv_no_overflow, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
223
|
+
attach_function :Z3_mk_bvsge, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
224
|
+
attach_function :Z3_mk_bvsgt, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
225
|
+
attach_function :Z3_mk_bvshl, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
226
|
+
attach_function :Z3_mk_bvsle, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
227
|
+
attach_function :Z3_mk_bvslt, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
228
|
+
attach_function :Z3_mk_bvsmod, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
229
|
+
attach_function :Z3_mk_bvsrem, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
230
|
+
attach_function :Z3_mk_bvsub, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
231
|
+
attach_function :Z3_mk_bvsub_no_overflow, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
232
|
+
attach_function :Z3_mk_bvsub_no_underflow, [:ctx_pointer, :ast_pointer, :ast_pointer, :bool], :ast_pointer
|
|
233
|
+
attach_function :Z3_mk_bvudiv, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
234
|
+
attach_function :Z3_mk_bvuge, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
235
|
+
attach_function :Z3_mk_bvugt, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
236
|
+
attach_function :Z3_mk_bvule, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
237
|
+
attach_function :Z3_mk_bvult, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
238
|
+
attach_function :Z3_mk_bvurem, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
239
|
+
attach_function :Z3_mk_bvxnor, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
240
|
+
attach_function :Z3_mk_bvxor, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
241
|
+
attach_function :Z3_mk_concat, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
242
|
+
attach_function :Z3_mk_config, [], :config_pointer
|
|
243
|
+
attach_function :Z3_mk_const, [:ctx_pointer, :symbol_pointer, :sort_pointer], :ast_pointer
|
|
244
|
+
attach_function :Z3_mk_const_array, [:ctx_pointer, :sort_pointer, :ast_pointer], :ast_pointer
|
|
245
|
+
attach_function :Z3_mk_context_rc, [:config_pointer], :ctx_pointer
|
|
246
|
+
attach_function :Z3_mk_div, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
247
|
+
attach_function :Z3_mk_empty_set, [:ctx_pointer, :sort_pointer], :ast_pointer
|
|
248
|
+
attach_function :Z3_mk_eq, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
249
|
+
attach_function :Z3_mk_ext_rotate_left, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
250
|
+
attach_function :Z3_mk_ext_rotate_right, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
251
|
+
attach_function :Z3_mk_extract, [:ctx_pointer, :uint, :uint, :ast_pointer], :ast_pointer
|
|
252
|
+
attach_function :Z3_mk_false, [:ctx_pointer], :ast_pointer
|
|
253
|
+
attach_function :Z3_mk_finite_domain_sort, [:ctx_pointer, :symbol_pointer, :uint64], :sort_pointer
|
|
254
|
+
attach_function :Z3_mk_fixedpoint, [:ctx_pointer], :fixedpoint_pointer
|
|
255
|
+
attach_function :Z3_mk_fpa_abs, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
256
|
+
attach_function :Z3_mk_fpa_add, [:ctx_pointer, :ast_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
257
|
+
attach_function :Z3_mk_fpa_div, [:ctx_pointer, :ast_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
258
|
+
attach_function :Z3_mk_fpa_eq, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
259
|
+
attach_function :Z3_mk_fpa_fma, [:ctx_pointer, :ast_pointer, :ast_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
260
|
+
attach_function :Z3_mk_fpa_fp, [:ctx_pointer, :ast_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
261
|
+
attach_function :Z3_mk_fpa_geq, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
262
|
+
attach_function :Z3_mk_fpa_gt, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
263
|
+
attach_function :Z3_mk_fpa_inf, [:ctx_pointer, :sort_pointer, :bool], :ast_pointer
|
|
264
|
+
attach_function :Z3_mk_fpa_is_infinite, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
265
|
+
attach_function :Z3_mk_fpa_is_nan, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
266
|
+
attach_function :Z3_mk_fpa_is_negative, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
267
|
+
attach_function :Z3_mk_fpa_is_normal, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
268
|
+
attach_function :Z3_mk_fpa_is_positive, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
269
|
+
attach_function :Z3_mk_fpa_is_subnormal, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
270
|
+
attach_function :Z3_mk_fpa_is_zero, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
271
|
+
attach_function :Z3_mk_fpa_leq, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
272
|
+
attach_function :Z3_mk_fpa_lt, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
273
|
+
attach_function :Z3_mk_fpa_max, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
274
|
+
attach_function :Z3_mk_fpa_min, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
275
|
+
attach_function :Z3_mk_fpa_mul, [:ctx_pointer, :ast_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
276
|
+
attach_function :Z3_mk_fpa_nan, [:ctx_pointer, :sort_pointer], :ast_pointer
|
|
277
|
+
attach_function :Z3_mk_fpa_neg, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
278
|
+
attach_function :Z3_mk_fpa_numeral_double, [:ctx_pointer, :double, :sort_pointer], :ast_pointer
|
|
279
|
+
attach_function :Z3_mk_fpa_numeral_int, [:ctx_pointer, :int, :sort_pointer], :ast_pointer
|
|
280
|
+
attach_function :Z3_mk_fpa_numeral_int64_uint64, [:ctx_pointer, :bool, :int64, :uint64, :sort_pointer], :ast_pointer
|
|
281
|
+
attach_function :Z3_mk_fpa_numeral_int_uint, [:ctx_pointer, :bool, :int, :uint, :sort_pointer], :ast_pointer
|
|
282
|
+
attach_function :Z3_mk_fpa_rem, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
283
|
+
attach_function :Z3_mk_fpa_round_nearest_ties_to_away, [:ctx_pointer], :ast_pointer
|
|
284
|
+
attach_function :Z3_mk_fpa_round_nearest_ties_to_even, [:ctx_pointer], :ast_pointer
|
|
285
|
+
attach_function :Z3_mk_fpa_round_to_integral, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
286
|
+
attach_function :Z3_mk_fpa_round_toward_negative, [:ctx_pointer], :ast_pointer
|
|
287
|
+
attach_function :Z3_mk_fpa_round_toward_positive, [:ctx_pointer], :ast_pointer
|
|
288
|
+
attach_function :Z3_mk_fpa_round_toward_zero, [:ctx_pointer], :ast_pointer
|
|
289
|
+
attach_function :Z3_mk_fpa_rounding_mode_sort, [:ctx_pointer], :sort_pointer
|
|
290
|
+
attach_function :Z3_mk_fpa_sort, [:ctx_pointer, :uint, :uint], :sort_pointer
|
|
291
|
+
attach_function :Z3_mk_fpa_sort_128, [:ctx_pointer], :sort_pointer
|
|
292
|
+
attach_function :Z3_mk_fpa_sort_16, [:ctx_pointer], :sort_pointer
|
|
293
|
+
attach_function :Z3_mk_fpa_sort_32, [:ctx_pointer], :sort_pointer
|
|
294
|
+
attach_function :Z3_mk_fpa_sort_64, [:ctx_pointer], :sort_pointer
|
|
295
|
+
attach_function :Z3_mk_fpa_sort_double, [:ctx_pointer], :sort_pointer
|
|
296
|
+
attach_function :Z3_mk_fpa_sort_half, [:ctx_pointer], :sort_pointer
|
|
297
|
+
attach_function :Z3_mk_fpa_sort_quadruple, [:ctx_pointer], :sort_pointer
|
|
298
|
+
attach_function :Z3_mk_fpa_sort_single, [:ctx_pointer], :sort_pointer
|
|
299
|
+
attach_function :Z3_mk_fpa_sqrt, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
300
|
+
attach_function :Z3_mk_fpa_sub, [:ctx_pointer, :ast_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
301
|
+
attach_function :Z3_mk_fpa_to_fp_bv, [:ctx_pointer, :ast_pointer, :sort_pointer], :ast_pointer
|
|
302
|
+
attach_function :Z3_mk_fpa_to_fp_float, [:ctx_pointer, :ast_pointer, :ast_pointer, :sort_pointer], :ast_pointer
|
|
303
|
+
attach_function :Z3_mk_fpa_to_fp_int_real, [:ctx_pointer, :ast_pointer, :ast_pointer, :ast_pointer, :sort_pointer], :ast_pointer
|
|
304
|
+
attach_function :Z3_mk_fpa_to_fp_real, [:ctx_pointer, :ast_pointer, :ast_pointer, :sort_pointer], :ast_pointer
|
|
305
|
+
attach_function :Z3_mk_fpa_to_fp_signed, [:ctx_pointer, :ast_pointer, :ast_pointer, :sort_pointer], :ast_pointer
|
|
306
|
+
attach_function :Z3_mk_fpa_to_fp_unsigned, [:ctx_pointer, :ast_pointer, :ast_pointer, :sort_pointer], :ast_pointer
|
|
307
|
+
attach_function :Z3_mk_fpa_to_ieee_bv, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
308
|
+
attach_function :Z3_mk_fpa_to_real, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
309
|
+
attach_function :Z3_mk_fpa_to_sbv, [:ctx_pointer, :ast_pointer, :ast_pointer, :uint], :ast_pointer
|
|
310
|
+
attach_function :Z3_mk_fpa_to_ubv, [:ctx_pointer, :ast_pointer, :ast_pointer, :uint], :ast_pointer
|
|
311
|
+
attach_function :Z3_mk_fpa_zero, [:ctx_pointer, :sort_pointer, :bool], :ast_pointer
|
|
312
|
+
attach_function :Z3_mk_fresh_const, [:ctx_pointer, :string, :sort_pointer], :ast_pointer
|
|
313
|
+
attach_function :Z3_mk_full_set, [:ctx_pointer, :sort_pointer], :ast_pointer
|
|
314
|
+
attach_function :Z3_mk_ge, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
315
|
+
attach_function :Z3_mk_goal, [:ctx_pointer, :bool, :bool, :bool], :goal_pointer
|
|
316
|
+
attach_function :Z3_mk_gt, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
317
|
+
attach_function :Z3_mk_iff, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
318
|
+
attach_function :Z3_mk_implies, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
319
|
+
attach_function :Z3_mk_int, [:ctx_pointer, :int, :sort_pointer], :ast_pointer
|
|
320
|
+
attach_function :Z3_mk_int2bv, [:ctx_pointer, :uint, :ast_pointer], :ast_pointer
|
|
321
|
+
attach_function :Z3_mk_int2real, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
322
|
+
attach_function :Z3_mk_int64, [:ctx_pointer, :int64, :sort_pointer], :ast_pointer
|
|
323
|
+
attach_function :Z3_mk_int_sort, [:ctx_pointer], :sort_pointer
|
|
324
|
+
attach_function :Z3_mk_int_symbol, [:ctx_pointer, :int], :symbol_pointer
|
|
325
|
+
attach_function :Z3_mk_interpolant, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
326
|
+
attach_function :Z3_mk_interpolation_context, [:config_pointer], :ctx_pointer
|
|
327
|
+
attach_function :Z3_mk_is_int, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
328
|
+
attach_function :Z3_mk_ite, [:ctx_pointer, :ast_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
329
|
+
attach_function :Z3_mk_le, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
330
|
+
attach_function :Z3_mk_lt, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
331
|
+
attach_function :Z3_mk_mod, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
332
|
+
attach_function :Z3_mk_not, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
333
|
+
attach_function :Z3_mk_numeral, [:ctx_pointer, :string, :sort_pointer], :ast_pointer
|
|
334
|
+
attach_function :Z3_mk_optimize, [:ctx_pointer], :optimize_pointer
|
|
335
|
+
attach_function :Z3_mk_params, [:ctx_pointer], :params_pointer
|
|
336
|
+
attach_function :Z3_mk_power, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
337
|
+
attach_function :Z3_mk_probe, [:ctx_pointer, :string], :probe_pointer
|
|
338
|
+
attach_function :Z3_mk_real, [:ctx_pointer, :int, :int], :ast_pointer
|
|
339
|
+
attach_function :Z3_mk_real2int, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
340
|
+
attach_function :Z3_mk_real_sort, [:ctx_pointer], :sort_pointer
|
|
341
|
+
attach_function :Z3_mk_rem, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
342
|
+
attach_function :Z3_mk_repeat, [:ctx_pointer, :uint, :ast_pointer], :ast_pointer
|
|
343
|
+
attach_function :Z3_mk_rotate_left, [:ctx_pointer, :uint, :ast_pointer], :ast_pointer
|
|
344
|
+
attach_function :Z3_mk_rotate_right, [:ctx_pointer, :uint, :ast_pointer], :ast_pointer
|
|
345
|
+
attach_function :Z3_mk_select, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
346
|
+
attach_function :Z3_mk_set_add, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
347
|
+
attach_function :Z3_mk_set_complement, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
348
|
+
attach_function :Z3_mk_set_del, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
349
|
+
attach_function :Z3_mk_set_difference, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
350
|
+
attach_function :Z3_mk_set_member, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
351
|
+
attach_function :Z3_mk_set_sort, [:ctx_pointer, :sort_pointer], :sort_pointer
|
|
352
|
+
attach_function :Z3_mk_set_subset, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
353
|
+
attach_function :Z3_mk_sign_ext, [:ctx_pointer, :uint, :ast_pointer], :ast_pointer
|
|
354
|
+
attach_function :Z3_mk_simple_solver, [:ctx_pointer], :solver_pointer
|
|
355
|
+
attach_function :Z3_mk_solver, [:ctx_pointer], :solver_pointer
|
|
356
|
+
attach_function :Z3_mk_solver_for_logic, [:ctx_pointer, :symbol_pointer], :solver_pointer
|
|
357
|
+
attach_function :Z3_mk_solver_from_tactic, [:ctx_pointer, :tactic_pointer], :solver_pointer
|
|
358
|
+
attach_function :Z3_mk_store, [:ctx_pointer, :ast_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
359
|
+
attach_function :Z3_mk_string_symbol, [:ctx_pointer, :string], :symbol_pointer
|
|
360
|
+
attach_function :Z3_mk_tactic, [:ctx_pointer, :string], :tactic_pointer
|
|
361
|
+
attach_function :Z3_mk_true, [:ctx_pointer], :ast_pointer
|
|
362
|
+
attach_function :Z3_mk_unary_minus, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
363
|
+
attach_function :Z3_mk_uninterpreted_sort, [:ctx_pointer, :symbol_pointer], :sort_pointer
|
|
364
|
+
attach_function :Z3_mk_unsigned_int, [:ctx_pointer, :uint, :sort_pointer], :ast_pointer
|
|
365
|
+
attach_function :Z3_mk_unsigned_int64, [:ctx_pointer, :uint64, :sort_pointer], :ast_pointer
|
|
366
|
+
attach_function :Z3_mk_xor, [:ctx_pointer, :ast_pointer, :ast_pointer], :ast_pointer
|
|
367
|
+
attach_function :Z3_mk_zero_ext, [:ctx_pointer, :uint, :ast_pointer], :ast_pointer
|
|
368
|
+
attach_function :Z3_model_dec_ref, [:ctx_pointer, :model_pointer], :void
|
|
369
|
+
attach_function :Z3_model_get_const_decl, [:ctx_pointer, :model_pointer, :uint], :func_decl_pointer
|
|
370
|
+
attach_function :Z3_model_get_const_interp, [:ctx_pointer, :model_pointer, :func_decl_pointer], :ast_pointer
|
|
371
|
+
attach_function :Z3_model_get_func_decl, [:ctx_pointer, :model_pointer, :uint], :func_decl_pointer
|
|
372
|
+
attach_function :Z3_model_get_func_interp, [:ctx_pointer, :model_pointer, :func_decl_pointer], :func_interp_pointer
|
|
373
|
+
attach_function :Z3_model_get_num_consts, [:ctx_pointer, :model_pointer], :uint
|
|
374
|
+
attach_function :Z3_model_get_num_funcs, [:ctx_pointer, :model_pointer], :uint
|
|
375
|
+
attach_function :Z3_model_get_num_sorts, [:ctx_pointer, :model_pointer], :uint
|
|
376
|
+
attach_function :Z3_model_get_sort, [:ctx_pointer, :model_pointer, :uint], :sort_pointer
|
|
377
|
+
attach_function :Z3_model_get_sort_universe, [:ctx_pointer, :model_pointer, :sort_pointer], :ast_vector_pointer
|
|
378
|
+
attach_function :Z3_model_has_interp, [:ctx_pointer, :model_pointer, :func_decl_pointer], :bool
|
|
379
|
+
attach_function :Z3_model_inc_ref, [:ctx_pointer, :model_pointer], :void
|
|
380
|
+
attach_function :Z3_model_to_string, [:ctx_pointer, :model_pointer], :string
|
|
381
|
+
attach_function :Z3_optimize_assert, [:ctx_pointer, :optimize_pointer, :ast_pointer], :void
|
|
382
|
+
attach_function :Z3_optimize_assert_soft, [:ctx_pointer, :optimize_pointer, :ast_pointer, :string, :symbol_pointer], :uint
|
|
383
|
+
attach_function :Z3_optimize_check, [:ctx_pointer, :optimize_pointer], :int
|
|
384
|
+
attach_function :Z3_optimize_dec_ref, [:ctx_pointer, :optimize_pointer], :void
|
|
385
|
+
attach_function :Z3_optimize_get_help, [:ctx_pointer, :optimize_pointer], :string
|
|
386
|
+
attach_function :Z3_optimize_get_lower, [:ctx_pointer, :optimize_pointer, :uint], :ast_pointer
|
|
387
|
+
attach_function :Z3_optimize_get_model, [:ctx_pointer, :optimize_pointer], :model_pointer
|
|
388
|
+
attach_function :Z3_optimize_get_param_descrs, [:ctx_pointer, :optimize_pointer], :param_descrs_pointer
|
|
389
|
+
attach_function :Z3_optimize_get_reason_unknown, [:ctx_pointer, :optimize_pointer], :string
|
|
390
|
+
attach_function :Z3_optimize_get_statistics, [:ctx_pointer, :optimize_pointer], :stats_pointer
|
|
391
|
+
attach_function :Z3_optimize_get_upper, [:ctx_pointer, :optimize_pointer, :uint], :ast_pointer
|
|
392
|
+
attach_function :Z3_optimize_inc_ref, [:ctx_pointer, :optimize_pointer], :void
|
|
393
|
+
attach_function :Z3_optimize_maximize, [:ctx_pointer, :optimize_pointer, :ast_pointer], :uint
|
|
394
|
+
attach_function :Z3_optimize_minimize, [:ctx_pointer, :optimize_pointer, :ast_pointer], :uint
|
|
395
|
+
attach_function :Z3_optimize_pop, [:ctx_pointer, :optimize_pointer], :void
|
|
396
|
+
attach_function :Z3_optimize_push, [:ctx_pointer, :optimize_pointer], :void
|
|
397
|
+
attach_function :Z3_optimize_set_params, [:ctx_pointer, :optimize_pointer, :params_pointer], :void
|
|
398
|
+
attach_function :Z3_optimize_to_string, [:ctx_pointer, :optimize_pointer], :string
|
|
399
|
+
attach_function :Z3_param_descrs_dec_ref, [:ctx_pointer, :param_descrs_pointer], :void
|
|
400
|
+
attach_function :Z3_param_descrs_get_kind, [:ctx_pointer, :param_descrs_pointer, :symbol_pointer], :uint
|
|
401
|
+
attach_function :Z3_param_descrs_get_name, [:ctx_pointer, :param_descrs_pointer, :uint], :symbol_pointer
|
|
402
|
+
attach_function :Z3_param_descrs_inc_ref, [:ctx_pointer, :param_descrs_pointer], :void
|
|
403
|
+
attach_function :Z3_param_descrs_size, [:ctx_pointer, :param_descrs_pointer], :uint
|
|
404
|
+
attach_function :Z3_param_descrs_to_string, [:ctx_pointer, :param_descrs_pointer], :string
|
|
405
|
+
attach_function :Z3_params_dec_ref, [:ctx_pointer, :params_pointer], :void
|
|
406
|
+
attach_function :Z3_params_inc_ref, [:ctx_pointer, :params_pointer], :void
|
|
407
|
+
attach_function :Z3_params_set_bool, [:ctx_pointer, :params_pointer, :symbol_pointer, :bool], :void
|
|
408
|
+
attach_function :Z3_params_set_double, [:ctx_pointer, :params_pointer, :symbol_pointer, :double], :void
|
|
409
|
+
attach_function :Z3_params_set_symbol, [:ctx_pointer, :params_pointer, :symbol_pointer, :symbol_pointer], :void
|
|
410
|
+
attach_function :Z3_params_set_uint, [:ctx_pointer, :params_pointer, :symbol_pointer, :uint], :void
|
|
411
|
+
attach_function :Z3_params_to_string, [:ctx_pointer, :params_pointer], :string
|
|
412
|
+
attach_function :Z3_params_validate, [:ctx_pointer, :params_pointer, :param_descrs_pointer], :void
|
|
413
|
+
attach_function :Z3_pattern_to_string, [:ctx_pointer, :pattern_pointer], :string
|
|
414
|
+
attach_function :Z3_polynomial_subresultants, [:ctx_pointer, :ast_pointer, :ast_pointer, :ast_pointer], :ast_vector_pointer
|
|
415
|
+
attach_function :Z3_probe_and, [:ctx_pointer, :probe_pointer, :probe_pointer], :probe_pointer
|
|
416
|
+
attach_function :Z3_probe_apply, [:ctx_pointer, :probe_pointer, :goal_pointer], :double
|
|
417
|
+
attach_function :Z3_probe_const, [:ctx_pointer, :double], :probe_pointer
|
|
418
|
+
attach_function :Z3_probe_dec_ref, [:ctx_pointer, :probe_pointer], :void
|
|
419
|
+
attach_function :Z3_probe_eq, [:ctx_pointer, :probe_pointer, :probe_pointer], :probe_pointer
|
|
420
|
+
attach_function :Z3_probe_ge, [:ctx_pointer, :probe_pointer, :probe_pointer], :probe_pointer
|
|
421
|
+
attach_function :Z3_probe_get_descr, [:ctx_pointer, :string], :string
|
|
422
|
+
attach_function :Z3_probe_gt, [:ctx_pointer, :probe_pointer, :probe_pointer], :probe_pointer
|
|
423
|
+
attach_function :Z3_probe_inc_ref, [:ctx_pointer, :probe_pointer], :void
|
|
424
|
+
attach_function :Z3_probe_le, [:ctx_pointer, :probe_pointer, :probe_pointer], :probe_pointer
|
|
425
|
+
attach_function :Z3_probe_lt, [:ctx_pointer, :probe_pointer, :probe_pointer], :probe_pointer
|
|
426
|
+
attach_function :Z3_probe_not, [:ctx_pointer, :probe_pointer], :probe_pointer
|
|
427
|
+
attach_function :Z3_probe_or, [:ctx_pointer, :probe_pointer, :probe_pointer], :probe_pointer
|
|
428
|
+
attach_function :Z3_rcf_add, [:ctx_pointer, :rcf_num_pointer, :rcf_num_pointer], :rcf_num_pointer
|
|
429
|
+
attach_function :Z3_rcf_del, [:ctx_pointer, :rcf_num_pointer], :void
|
|
430
|
+
attach_function :Z3_rcf_div, [:ctx_pointer, :rcf_num_pointer, :rcf_num_pointer], :rcf_num_pointer
|
|
431
|
+
attach_function :Z3_rcf_eq, [:ctx_pointer, :rcf_num_pointer, :rcf_num_pointer], :bool
|
|
432
|
+
attach_function :Z3_rcf_ge, [:ctx_pointer, :rcf_num_pointer, :rcf_num_pointer], :bool
|
|
433
|
+
attach_function :Z3_rcf_gt, [:ctx_pointer, :rcf_num_pointer, :rcf_num_pointer], :bool
|
|
434
|
+
attach_function :Z3_rcf_inv, [:ctx_pointer, :rcf_num_pointer], :rcf_num_pointer
|
|
435
|
+
attach_function :Z3_rcf_le, [:ctx_pointer, :rcf_num_pointer, :rcf_num_pointer], :bool
|
|
436
|
+
attach_function :Z3_rcf_lt, [:ctx_pointer, :rcf_num_pointer, :rcf_num_pointer], :bool
|
|
437
|
+
attach_function :Z3_rcf_mk_e, [:ctx_pointer], :rcf_num_pointer
|
|
438
|
+
attach_function :Z3_rcf_mk_infinitesimal, [:ctx_pointer], :rcf_num_pointer
|
|
439
|
+
attach_function :Z3_rcf_mk_pi, [:ctx_pointer], :rcf_num_pointer
|
|
440
|
+
attach_function :Z3_rcf_mk_rational, [:ctx_pointer, :string], :rcf_num_pointer
|
|
441
|
+
attach_function :Z3_rcf_mk_small_int, [:ctx_pointer, :int], :rcf_num_pointer
|
|
442
|
+
attach_function :Z3_rcf_mul, [:ctx_pointer, :rcf_num_pointer, :rcf_num_pointer], :rcf_num_pointer
|
|
443
|
+
attach_function :Z3_rcf_neg, [:ctx_pointer, :rcf_num_pointer], :rcf_num_pointer
|
|
444
|
+
attach_function :Z3_rcf_neq, [:ctx_pointer, :rcf_num_pointer, :rcf_num_pointer], :bool
|
|
445
|
+
attach_function :Z3_rcf_num_to_decimal_string, [:ctx_pointer, :rcf_num_pointer, :uint], :string
|
|
446
|
+
attach_function :Z3_rcf_num_to_string, [:ctx_pointer, :rcf_num_pointer, :bool, :bool], :string
|
|
447
|
+
attach_function :Z3_rcf_power, [:ctx_pointer, :rcf_num_pointer, :uint], :rcf_num_pointer
|
|
448
|
+
attach_function :Z3_rcf_sub, [:ctx_pointer, :rcf_num_pointer, :rcf_num_pointer], :rcf_num_pointer
|
|
449
|
+
attach_function :Z3_reset_memory, [], :void
|
|
450
|
+
attach_function :Z3_set_param_value, [:config_pointer, :string, :string], :void
|
|
451
|
+
attach_function :Z3_simplify, [:ctx_pointer, :ast_pointer], :ast_pointer
|
|
452
|
+
attach_function :Z3_simplify_ex, [:ctx_pointer, :ast_pointer, :params_pointer], :ast_pointer
|
|
453
|
+
attach_function :Z3_simplify_get_help, [:ctx_pointer], :string
|
|
454
|
+
attach_function :Z3_simplify_get_param_descrs, [:ctx_pointer], :param_descrs_pointer
|
|
455
|
+
attach_function :Z3_solver_assert, [:ctx_pointer, :solver_pointer, :ast_pointer], :void
|
|
456
|
+
attach_function :Z3_solver_assert_and_track, [:ctx_pointer, :solver_pointer, :ast_pointer, :ast_pointer], :void
|
|
457
|
+
attach_function :Z3_solver_check, [:ctx_pointer, :solver_pointer], :int
|
|
458
|
+
attach_function :Z3_solver_dec_ref, [:ctx_pointer, :solver_pointer], :void
|
|
459
|
+
attach_function :Z3_solver_get_assertions, [:ctx_pointer, :solver_pointer], :ast_vector_pointer
|
|
460
|
+
attach_function :Z3_solver_get_help, [:ctx_pointer, :solver_pointer], :string
|
|
461
|
+
attach_function :Z3_solver_get_model, [:ctx_pointer, :solver_pointer], :model_pointer
|
|
462
|
+
attach_function :Z3_solver_get_num_scopes, [:ctx_pointer, :solver_pointer], :uint
|
|
463
|
+
attach_function :Z3_solver_get_param_descrs, [:ctx_pointer, :solver_pointer], :param_descrs_pointer
|
|
464
|
+
attach_function :Z3_solver_get_proof, [:ctx_pointer, :solver_pointer], :ast_pointer
|
|
465
|
+
attach_function :Z3_solver_get_reason_unknown, [:ctx_pointer, :solver_pointer], :string
|
|
466
|
+
attach_function :Z3_solver_get_statistics, [:ctx_pointer, :solver_pointer], :stats_pointer
|
|
467
|
+
attach_function :Z3_solver_get_unsat_core, [:ctx_pointer, :solver_pointer], :ast_vector_pointer
|
|
468
|
+
attach_function :Z3_solver_inc_ref, [:ctx_pointer, :solver_pointer], :void
|
|
469
|
+
attach_function :Z3_solver_pop, [:ctx_pointer, :solver_pointer, :uint], :void
|
|
470
|
+
attach_function :Z3_solver_push, [:ctx_pointer, :solver_pointer], :void
|
|
471
|
+
attach_function :Z3_solver_reset, [:ctx_pointer, :solver_pointer], :void
|
|
472
|
+
attach_function :Z3_solver_set_params, [:ctx_pointer, :solver_pointer, :params_pointer], :void
|
|
473
|
+
attach_function :Z3_solver_to_string, [:ctx_pointer, :solver_pointer], :string
|
|
474
|
+
attach_function :Z3_stats_dec_ref, [:ctx_pointer, :stats_pointer], :void
|
|
475
|
+
attach_function :Z3_stats_get_double_value, [:ctx_pointer, :stats_pointer, :uint], :double
|
|
476
|
+
attach_function :Z3_stats_get_key, [:ctx_pointer, :stats_pointer, :uint], :string
|
|
477
|
+
attach_function :Z3_stats_get_uint_value, [:ctx_pointer, :stats_pointer, :uint], :uint
|
|
478
|
+
attach_function :Z3_stats_inc_ref, [:ctx_pointer, :stats_pointer], :void
|
|
479
|
+
attach_function :Z3_stats_is_double, [:ctx_pointer, :stats_pointer, :uint], :bool
|
|
480
|
+
attach_function :Z3_stats_is_uint, [:ctx_pointer, :stats_pointer, :uint], :bool
|
|
481
|
+
attach_function :Z3_stats_size, [:ctx_pointer, :stats_pointer], :uint
|
|
482
|
+
attach_function :Z3_stats_to_string, [:ctx_pointer, :stats_pointer], :string
|
|
483
|
+
attach_function :Z3_tactic_and_then, [:ctx_pointer, :tactic_pointer, :tactic_pointer], :tactic_pointer
|
|
484
|
+
attach_function :Z3_tactic_apply, [:ctx_pointer, :tactic_pointer, :goal_pointer], :apply_result_pointer
|
|
485
|
+
attach_function :Z3_tactic_apply_ex, [:ctx_pointer, :tactic_pointer, :goal_pointer, :params_pointer], :apply_result_pointer
|
|
486
|
+
attach_function :Z3_tactic_cond, [:ctx_pointer, :probe_pointer, :tactic_pointer, :tactic_pointer], :tactic_pointer
|
|
487
|
+
attach_function :Z3_tactic_dec_ref, [:ctx_pointer, :tactic_pointer], :void
|
|
488
|
+
attach_function :Z3_tactic_fail, [:ctx_pointer], :tactic_pointer
|
|
489
|
+
attach_function :Z3_tactic_fail_if, [:ctx_pointer, :probe_pointer], :tactic_pointer
|
|
490
|
+
attach_function :Z3_tactic_fail_if_not_decided, [:ctx_pointer], :tactic_pointer
|
|
491
|
+
attach_function :Z3_tactic_get_descr, [:ctx_pointer, :string], :string
|
|
492
|
+
attach_function :Z3_tactic_get_help, [:ctx_pointer, :tactic_pointer], :string
|
|
493
|
+
attach_function :Z3_tactic_get_param_descrs, [:ctx_pointer, :tactic_pointer], :param_descrs_pointer
|
|
494
|
+
attach_function :Z3_tactic_inc_ref, [:ctx_pointer, :tactic_pointer], :void
|
|
495
|
+
attach_function :Z3_tactic_or_else, [:ctx_pointer, :tactic_pointer, :tactic_pointer], :tactic_pointer
|
|
496
|
+
attach_function :Z3_tactic_par_and_then, [:ctx_pointer, :tactic_pointer, :tactic_pointer], :tactic_pointer
|
|
497
|
+
attach_function :Z3_tactic_repeat, [:ctx_pointer, :tactic_pointer, :uint], :tactic_pointer
|
|
498
|
+
attach_function :Z3_tactic_skip, [:ctx_pointer], :tactic_pointer
|
|
499
|
+
attach_function :Z3_tactic_try_for, [:ctx_pointer, :tactic_pointer, :uint], :tactic_pointer
|
|
500
|
+
attach_function :Z3_tactic_using_params, [:ctx_pointer, :tactic_pointer, :params_pointer], :tactic_pointer
|
|
501
|
+
attach_function :Z3_tactic_when, [:ctx_pointer, :probe_pointer, :tactic_pointer], :tactic_pointer
|
|
502
|
+
attach_function :Z3_toggle_warning_messages, [:bool], :void
|
|
503
|
+
attach_function :Z3_translate, [:ctx_pointer, :ast_pointer, :ctx_pointer], :ast_pointer
|
|
504
|
+
attach_function :Z3_update_param_value, [:ctx_pointer, :string, :string], :void
|
|
505
|
+
end
|
|
518
506
|
end
|