z3 0.0.0 → 0.0.20160221
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/examples/bridges_solver +132 -0
- data/examples/kakuro_solver +124 -0
- data/examples/letter_connections_solver +199 -0
- data/lib/z3/ast.rb +1 -1
- data/lib/z3/low_level.rb +2 -183
- data/lib/z3/low_level_auto.rb +2063 -0
- data/lib/z3/very_low_level.rb +32 -64
- data/lib/z3/very_low_level_auto.rb +516 -0
- data/spec/integration/bridges_spec.rb +28 -0
- data/spec/integration/geometry_problem_spec.rb +1 -1
- data/spec/integration/kakuro_spec.rb +17 -0
- data/spec/integration/letter_connections_spec.rb +17 -0
- data/spec/integration/selfref_spec.rb +1 -1
- metadata +25 -3
@@ -0,0 +1,2063 @@
|
|
1
|
+
def algebraic_add(ast1, ast2)
|
2
|
+
Z3::VeryLowLevel.Z3_algebraic_add(_ctx_pointer, ast1._ast, ast2._ast)
|
3
|
+
end
|
4
|
+
|
5
|
+
def algebraic_div(ast1, ast2)
|
6
|
+
Z3::VeryLowLevel.Z3_algebraic_div(_ctx_pointer, ast1._ast, ast2._ast)
|
7
|
+
end
|
8
|
+
|
9
|
+
def algebraic_eq(ast1, ast2)
|
10
|
+
Z3::VeryLowLevel.Z3_algebraic_eq(_ctx_pointer, ast1._ast, ast2._ast)
|
11
|
+
end
|
12
|
+
|
13
|
+
def algebraic_ge(ast1, ast2)
|
14
|
+
Z3::VeryLowLevel.Z3_algebraic_ge(_ctx_pointer, ast1._ast, ast2._ast)
|
15
|
+
end
|
16
|
+
|
17
|
+
def algebraic_gt(ast1, ast2)
|
18
|
+
Z3::VeryLowLevel.Z3_algebraic_gt(_ctx_pointer, ast1._ast, ast2._ast)
|
19
|
+
end
|
20
|
+
|
21
|
+
def algebraic_is_neg(ast)
|
22
|
+
Z3::VeryLowLevel.Z3_algebraic_is_neg(_ctx_pointer, ast._ast)
|
23
|
+
end
|
24
|
+
|
25
|
+
def algebraic_is_pos(ast)
|
26
|
+
Z3::VeryLowLevel.Z3_algebraic_is_pos(_ctx_pointer, ast._ast)
|
27
|
+
end
|
28
|
+
|
29
|
+
def algebraic_is_value(ast)
|
30
|
+
Z3::VeryLowLevel.Z3_algebraic_is_value(_ctx_pointer, ast._ast)
|
31
|
+
end
|
32
|
+
|
33
|
+
def algebraic_is_zero(ast)
|
34
|
+
Z3::VeryLowLevel.Z3_algebraic_is_zero(_ctx_pointer, ast._ast)
|
35
|
+
end
|
36
|
+
|
37
|
+
def algebraic_le(ast1, ast2)
|
38
|
+
Z3::VeryLowLevel.Z3_algebraic_le(_ctx_pointer, ast1._ast, ast2._ast)
|
39
|
+
end
|
40
|
+
|
41
|
+
def algebraic_lt(ast1, ast2)
|
42
|
+
Z3::VeryLowLevel.Z3_algebraic_lt(_ctx_pointer, ast1._ast, ast2._ast)
|
43
|
+
end
|
44
|
+
|
45
|
+
def algebraic_mul(ast1, ast2)
|
46
|
+
Z3::VeryLowLevel.Z3_algebraic_mul(_ctx_pointer, ast1._ast, ast2._ast)
|
47
|
+
end
|
48
|
+
|
49
|
+
def algebraic_neq(ast1, ast2)
|
50
|
+
Z3::VeryLowLevel.Z3_algebraic_neq(_ctx_pointer, ast1._ast, ast2._ast)
|
51
|
+
end
|
52
|
+
|
53
|
+
def algebraic_power(ast, num)
|
54
|
+
Z3::VeryLowLevel.Z3_algebraic_power(_ctx_pointer, ast._ast, num)
|
55
|
+
end
|
56
|
+
|
57
|
+
def algebraic_root(ast, num)
|
58
|
+
Z3::VeryLowLevel.Z3_algebraic_root(_ctx_pointer, ast._ast, num)
|
59
|
+
end
|
60
|
+
|
61
|
+
def algebraic_sign(ast)
|
62
|
+
Z3::VeryLowLevel.Z3_algebraic_sign(_ctx_pointer, ast._ast)
|
63
|
+
end
|
64
|
+
|
65
|
+
def algebraic_sub(ast1, ast2)
|
66
|
+
Z3::VeryLowLevel.Z3_algebraic_sub(_ctx_pointer, ast1._ast, ast2._ast)
|
67
|
+
end
|
68
|
+
|
69
|
+
def app_to_ast(app)
|
70
|
+
Z3::VeryLowLevel.Z3_app_to_ast(_ctx_pointer, app._app)
|
71
|
+
end
|
72
|
+
|
73
|
+
def apply_result_convert_model(apply_result, num, model)
|
74
|
+
Z3::VeryLowLevel.Z3_apply_result_convert_model(_ctx_pointer, apply_result._apply_result, num, model._model)
|
75
|
+
end
|
76
|
+
|
77
|
+
def apply_result_dec_ref(apply_result)
|
78
|
+
Z3::VeryLowLevel.Z3_apply_result_dec_ref(_ctx_pointer, apply_result._apply_result)
|
79
|
+
end
|
80
|
+
|
81
|
+
def apply_result_get_num_subgoals(apply_result)
|
82
|
+
Z3::VeryLowLevel.Z3_apply_result_get_num_subgoals(_ctx_pointer, apply_result._apply_result)
|
83
|
+
end
|
84
|
+
|
85
|
+
def apply_result_get_subgoal(apply_result, num)
|
86
|
+
Z3::VeryLowLevel.Z3_apply_result_get_subgoal(_ctx_pointer, apply_result._apply_result, num)
|
87
|
+
end
|
88
|
+
|
89
|
+
def apply_result_inc_ref(apply_result)
|
90
|
+
Z3::VeryLowLevel.Z3_apply_result_inc_ref(_ctx_pointer, apply_result._apply_result)
|
91
|
+
end
|
92
|
+
|
93
|
+
def apply_result_to_string(apply_result)
|
94
|
+
Z3::VeryLowLevel.Z3_apply_result_to_string(_ctx_pointer, apply_result._apply_result)
|
95
|
+
end
|
96
|
+
|
97
|
+
def ast_map_contains(ast_map, ast)
|
98
|
+
Z3::VeryLowLevel.Z3_ast_map_contains(_ctx_pointer, ast_map._ast_map, ast._ast)
|
99
|
+
end
|
100
|
+
|
101
|
+
def ast_map_dec_ref(ast_map)
|
102
|
+
Z3::VeryLowLevel.Z3_ast_map_dec_ref(_ctx_pointer, ast_map._ast_map)
|
103
|
+
end
|
104
|
+
|
105
|
+
def ast_map_erase(ast_map, ast)
|
106
|
+
Z3::VeryLowLevel.Z3_ast_map_erase(_ctx_pointer, ast_map._ast_map, ast._ast)
|
107
|
+
end
|
108
|
+
|
109
|
+
def ast_map_find(ast_map, ast)
|
110
|
+
Z3::VeryLowLevel.Z3_ast_map_find(_ctx_pointer, ast_map._ast_map, ast._ast)
|
111
|
+
end
|
112
|
+
|
113
|
+
def ast_map_inc_ref(ast_map)
|
114
|
+
Z3::VeryLowLevel.Z3_ast_map_inc_ref(_ctx_pointer, ast_map._ast_map)
|
115
|
+
end
|
116
|
+
|
117
|
+
def ast_map_insert(ast_map, ast1, ast2)
|
118
|
+
Z3::VeryLowLevel.Z3_ast_map_insert(_ctx_pointer, ast_map._ast_map, ast1._ast, ast2._ast)
|
119
|
+
end
|
120
|
+
|
121
|
+
def ast_map_keys(ast_map)
|
122
|
+
Z3::VeryLowLevel.Z3_ast_map_keys(_ctx_pointer, ast_map._ast_map)
|
123
|
+
end
|
124
|
+
|
125
|
+
def ast_map_reset(ast_map)
|
126
|
+
Z3::VeryLowLevel.Z3_ast_map_reset(_ctx_pointer, ast_map._ast_map)
|
127
|
+
end
|
128
|
+
|
129
|
+
def ast_map_size(ast_map)
|
130
|
+
Z3::VeryLowLevel.Z3_ast_map_size(_ctx_pointer, ast_map._ast_map)
|
131
|
+
end
|
132
|
+
|
133
|
+
def ast_map_to_string(ast_map)
|
134
|
+
Z3::VeryLowLevel.Z3_ast_map_to_string(_ctx_pointer, ast_map._ast_map)
|
135
|
+
end
|
136
|
+
|
137
|
+
def ast_to_string(ast)
|
138
|
+
Z3::VeryLowLevel.Z3_ast_to_string(_ctx_pointer, ast._ast)
|
139
|
+
end
|
140
|
+
|
141
|
+
def ast_vector_dec_ref(ast_vector)
|
142
|
+
Z3::VeryLowLevel.Z3_ast_vector_dec_ref(_ctx_pointer, ast_vector._ast_vector)
|
143
|
+
end
|
144
|
+
|
145
|
+
def ast_vector_get(ast_vector, num)
|
146
|
+
Z3::VeryLowLevel.Z3_ast_vector_get(_ctx_pointer, ast_vector._ast_vector, num)
|
147
|
+
end
|
148
|
+
|
149
|
+
def ast_vector_inc_ref(ast_vector)
|
150
|
+
Z3::VeryLowLevel.Z3_ast_vector_inc_ref(_ctx_pointer, ast_vector._ast_vector)
|
151
|
+
end
|
152
|
+
|
153
|
+
def ast_vector_push(ast_vector, ast)
|
154
|
+
Z3::VeryLowLevel.Z3_ast_vector_push(_ctx_pointer, ast_vector._ast_vector, ast._ast)
|
155
|
+
end
|
156
|
+
|
157
|
+
def ast_vector_resize(ast_vector, num)
|
158
|
+
Z3::VeryLowLevel.Z3_ast_vector_resize(_ctx_pointer, ast_vector._ast_vector, num)
|
159
|
+
end
|
160
|
+
|
161
|
+
def ast_vector_set(ast_vector, num, ast)
|
162
|
+
Z3::VeryLowLevel.Z3_ast_vector_set(_ctx_pointer, ast_vector._ast_vector, num, ast._ast)
|
163
|
+
end
|
164
|
+
|
165
|
+
def ast_vector_size(ast_vector)
|
166
|
+
Z3::VeryLowLevel.Z3_ast_vector_size(_ctx_pointer, ast_vector._ast_vector)
|
167
|
+
end
|
168
|
+
|
169
|
+
def ast_vector_to_string(ast_vector)
|
170
|
+
Z3::VeryLowLevel.Z3_ast_vector_to_string(_ctx_pointer, ast_vector._ast_vector)
|
171
|
+
end
|
172
|
+
|
173
|
+
def ast_vector_translate(ast_vector, context)
|
174
|
+
Z3::VeryLowLevel.Z3_ast_vector_translate(_ctx_pointer, ast_vector._ast_vector, context._context)
|
175
|
+
end
|
176
|
+
|
177
|
+
def datatype_update_field(func_decl, ast1, ast2)
|
178
|
+
Z3::VeryLowLevel.Z3_datatype_update_field(_ctx_pointer, func_decl._func_decl, ast1._ast, ast2._ast)
|
179
|
+
end
|
180
|
+
|
181
|
+
def dec_ref(ast)
|
182
|
+
Z3::VeryLowLevel.Z3_dec_ref(_ctx_pointer, ast._ast)
|
183
|
+
end
|
184
|
+
|
185
|
+
def del_config(config)
|
186
|
+
Z3::VeryLowLevel.Z3_del_config(config._config)
|
187
|
+
end
|
188
|
+
|
189
|
+
def del_constructor(constructor)
|
190
|
+
Z3::VeryLowLevel.Z3_del_constructor(_ctx_pointer, constructor._constructor)
|
191
|
+
end
|
192
|
+
|
193
|
+
def del_constructor_list(constructor_list)
|
194
|
+
Z3::VeryLowLevel.Z3_del_constructor_list(_ctx_pointer, constructor_list._constructor_list)
|
195
|
+
end
|
196
|
+
|
197
|
+
def del_context
|
198
|
+
Z3::VeryLowLevel.Z3_del_context(_ctx_pointer)
|
199
|
+
end
|
200
|
+
|
201
|
+
def disable_trace(str)
|
202
|
+
Z3::VeryLowLevel.Z3_disable_trace(str)
|
203
|
+
end
|
204
|
+
|
205
|
+
def enable_trace(str)
|
206
|
+
Z3::VeryLowLevel.Z3_enable_trace(str)
|
207
|
+
end
|
208
|
+
|
209
|
+
def finalize_memory
|
210
|
+
Z3::VeryLowLevel.Z3_finalize_memory()
|
211
|
+
end
|
212
|
+
|
213
|
+
def fixedpoint_add_cover(fixedpoint, num, func_decl, ast)
|
214
|
+
Z3::VeryLowLevel.Z3_fixedpoint_add_cover(_ctx_pointer, fixedpoint._fixedpoint, num, func_decl._func_decl, ast._ast)
|
215
|
+
end
|
216
|
+
|
217
|
+
def fixedpoint_add_rule(fixedpoint, ast, sym)
|
218
|
+
Z3::VeryLowLevel.Z3_fixedpoint_add_rule(_ctx_pointer, fixedpoint._fixedpoint, ast._ast, sym)
|
219
|
+
end
|
220
|
+
|
221
|
+
def fixedpoint_assert(fixedpoint, ast)
|
222
|
+
Z3::VeryLowLevel.Z3_fixedpoint_assert(_ctx_pointer, fixedpoint._fixedpoint, ast._ast)
|
223
|
+
end
|
224
|
+
|
225
|
+
def fixedpoint_dec_ref(fixedpoint)
|
226
|
+
Z3::VeryLowLevel.Z3_fixedpoint_dec_ref(_ctx_pointer, fixedpoint._fixedpoint)
|
227
|
+
end
|
228
|
+
|
229
|
+
def fixedpoint_from_file(fixedpoint, str)
|
230
|
+
Z3::VeryLowLevel.Z3_fixedpoint_from_file(_ctx_pointer, fixedpoint._fixedpoint, str)
|
231
|
+
end
|
232
|
+
|
233
|
+
def fixedpoint_from_string(fixedpoint, str)
|
234
|
+
Z3::VeryLowLevel.Z3_fixedpoint_from_string(_ctx_pointer, fixedpoint._fixedpoint, str)
|
235
|
+
end
|
236
|
+
|
237
|
+
def fixedpoint_get_answer(fixedpoint)
|
238
|
+
Z3::VeryLowLevel.Z3_fixedpoint_get_answer(_ctx_pointer, fixedpoint._fixedpoint)
|
239
|
+
end
|
240
|
+
|
241
|
+
def fixedpoint_get_assertions(fixedpoint)
|
242
|
+
Z3::VeryLowLevel.Z3_fixedpoint_get_assertions(_ctx_pointer, fixedpoint._fixedpoint)
|
243
|
+
end
|
244
|
+
|
245
|
+
def fixedpoint_get_cover_delta(fixedpoint, num, func_decl)
|
246
|
+
Z3::VeryLowLevel.Z3_fixedpoint_get_cover_delta(_ctx_pointer, fixedpoint._fixedpoint, num, func_decl._func_decl)
|
247
|
+
end
|
248
|
+
|
249
|
+
def fixedpoint_get_help(fixedpoint)
|
250
|
+
Z3::VeryLowLevel.Z3_fixedpoint_get_help(_ctx_pointer, fixedpoint._fixedpoint)
|
251
|
+
end
|
252
|
+
|
253
|
+
def fixedpoint_get_num_levels(fixedpoint, func_decl)
|
254
|
+
Z3::VeryLowLevel.Z3_fixedpoint_get_num_levels(_ctx_pointer, fixedpoint._fixedpoint, func_decl._func_decl)
|
255
|
+
end
|
256
|
+
|
257
|
+
def fixedpoint_get_param_descrs(fixedpoint)
|
258
|
+
Z3::VeryLowLevel.Z3_fixedpoint_get_param_descrs(_ctx_pointer, fixedpoint._fixedpoint)
|
259
|
+
end
|
260
|
+
|
261
|
+
def fixedpoint_get_reason_unknown(fixedpoint)
|
262
|
+
Z3::VeryLowLevel.Z3_fixedpoint_get_reason_unknown(_ctx_pointer, fixedpoint._fixedpoint)
|
263
|
+
end
|
264
|
+
|
265
|
+
def fixedpoint_get_rules(fixedpoint)
|
266
|
+
Z3::VeryLowLevel.Z3_fixedpoint_get_rules(_ctx_pointer, fixedpoint._fixedpoint)
|
267
|
+
end
|
268
|
+
|
269
|
+
def fixedpoint_get_statistics(fixedpoint)
|
270
|
+
Z3::VeryLowLevel.Z3_fixedpoint_get_statistics(_ctx_pointer, fixedpoint._fixedpoint)
|
271
|
+
end
|
272
|
+
|
273
|
+
def fixedpoint_inc_ref(fixedpoint)
|
274
|
+
Z3::VeryLowLevel.Z3_fixedpoint_inc_ref(_ctx_pointer, fixedpoint._fixedpoint)
|
275
|
+
end
|
276
|
+
|
277
|
+
def fixedpoint_pop(fixedpoint)
|
278
|
+
Z3::VeryLowLevel.Z3_fixedpoint_pop(_ctx_pointer, fixedpoint._fixedpoint)
|
279
|
+
end
|
280
|
+
|
281
|
+
def fixedpoint_push(fixedpoint)
|
282
|
+
Z3::VeryLowLevel.Z3_fixedpoint_push(_ctx_pointer, fixedpoint._fixedpoint)
|
283
|
+
end
|
284
|
+
|
285
|
+
def fixedpoint_query(fixedpoint, ast)
|
286
|
+
Z3::VeryLowLevel.Z3_fixedpoint_query(_ctx_pointer, fixedpoint._fixedpoint, ast._ast)
|
287
|
+
end
|
288
|
+
|
289
|
+
def fixedpoint_register_relation(fixedpoint, func_decl)
|
290
|
+
Z3::VeryLowLevel.Z3_fixedpoint_register_relation(_ctx_pointer, fixedpoint._fixedpoint, func_decl._func_decl)
|
291
|
+
end
|
292
|
+
|
293
|
+
def fixedpoint_set_params(fixedpoint, params)
|
294
|
+
Z3::VeryLowLevel.Z3_fixedpoint_set_params(_ctx_pointer, fixedpoint._fixedpoint, params._params)
|
295
|
+
end
|
296
|
+
|
297
|
+
def fixedpoint_update_rule(fixedpoint, ast, sym)
|
298
|
+
Z3::VeryLowLevel.Z3_fixedpoint_update_rule(_ctx_pointer, fixedpoint._fixedpoint, ast._ast, sym)
|
299
|
+
end
|
300
|
+
|
301
|
+
def fpa_get_ebits(sort)
|
302
|
+
Z3::VeryLowLevel.Z3_fpa_get_ebits(_ctx_pointer, sort._sort)
|
303
|
+
end
|
304
|
+
|
305
|
+
def fpa_get_numeral_exponent_string(ast)
|
306
|
+
Z3::VeryLowLevel.Z3_fpa_get_numeral_exponent_string(_ctx_pointer, ast._ast)
|
307
|
+
end
|
308
|
+
|
309
|
+
def fpa_get_numeral_significand_string(ast)
|
310
|
+
Z3::VeryLowLevel.Z3_fpa_get_numeral_significand_string(_ctx_pointer, ast._ast)
|
311
|
+
end
|
312
|
+
|
313
|
+
def fpa_get_sbits(sort)
|
314
|
+
Z3::VeryLowLevel.Z3_fpa_get_sbits(_ctx_pointer, sort._sort)
|
315
|
+
end
|
316
|
+
|
317
|
+
def func_decl_to_ast(func_decl)
|
318
|
+
Z3::VeryLowLevel.Z3_func_decl_to_ast(_ctx_pointer, func_decl._func_decl)
|
319
|
+
end
|
320
|
+
|
321
|
+
def func_decl_to_string(func_decl)
|
322
|
+
Z3::VeryLowLevel.Z3_func_decl_to_string(_ctx_pointer, func_decl._func_decl)
|
323
|
+
end
|
324
|
+
|
325
|
+
def func_entry_dec_ref(func_entry)
|
326
|
+
Z3::VeryLowLevel.Z3_func_entry_dec_ref(_ctx_pointer, func_entry._func_entry)
|
327
|
+
end
|
328
|
+
|
329
|
+
def func_entry_get_arg(func_entry, num)
|
330
|
+
Z3::VeryLowLevel.Z3_func_entry_get_arg(_ctx_pointer, func_entry._func_entry, num)
|
331
|
+
end
|
332
|
+
|
333
|
+
def func_entry_get_num_args(func_entry)
|
334
|
+
Z3::VeryLowLevel.Z3_func_entry_get_num_args(_ctx_pointer, func_entry._func_entry)
|
335
|
+
end
|
336
|
+
|
337
|
+
def func_entry_get_value(func_entry)
|
338
|
+
Z3::VeryLowLevel.Z3_func_entry_get_value(_ctx_pointer, func_entry._func_entry)
|
339
|
+
end
|
340
|
+
|
341
|
+
def func_entry_inc_ref(func_entry)
|
342
|
+
Z3::VeryLowLevel.Z3_func_entry_inc_ref(_ctx_pointer, func_entry._func_entry)
|
343
|
+
end
|
344
|
+
|
345
|
+
def func_interp_dec_ref(func_interp)
|
346
|
+
Z3::VeryLowLevel.Z3_func_interp_dec_ref(_ctx_pointer, func_interp._func_interp)
|
347
|
+
end
|
348
|
+
|
349
|
+
def func_interp_get_arity(func_interp)
|
350
|
+
Z3::VeryLowLevel.Z3_func_interp_get_arity(_ctx_pointer, func_interp._func_interp)
|
351
|
+
end
|
352
|
+
|
353
|
+
def func_interp_get_else(func_interp)
|
354
|
+
Z3::VeryLowLevel.Z3_func_interp_get_else(_ctx_pointer, func_interp._func_interp)
|
355
|
+
end
|
356
|
+
|
357
|
+
def func_interp_get_entry(func_interp, num)
|
358
|
+
Z3::VeryLowLevel.Z3_func_interp_get_entry(_ctx_pointer, func_interp._func_interp, num)
|
359
|
+
end
|
360
|
+
|
361
|
+
def func_interp_get_num_entries(func_interp)
|
362
|
+
Z3::VeryLowLevel.Z3_func_interp_get_num_entries(_ctx_pointer, func_interp._func_interp)
|
363
|
+
end
|
364
|
+
|
365
|
+
def func_interp_inc_ref(func_interp)
|
366
|
+
Z3::VeryLowLevel.Z3_func_interp_inc_ref(_ctx_pointer, func_interp._func_interp)
|
367
|
+
end
|
368
|
+
|
369
|
+
def get_algebraic_number_lower(ast, num)
|
370
|
+
Z3::VeryLowLevel.Z3_get_algebraic_number_lower(_ctx_pointer, ast._ast, num)
|
371
|
+
end
|
372
|
+
|
373
|
+
def get_algebraic_number_upper(ast, num)
|
374
|
+
Z3::VeryLowLevel.Z3_get_algebraic_number_upper(_ctx_pointer, ast._ast, num)
|
375
|
+
end
|
376
|
+
|
377
|
+
def get_app_arg(app, num)
|
378
|
+
Z3::VeryLowLevel.Z3_get_app_arg(_ctx_pointer, app._app, num)
|
379
|
+
end
|
380
|
+
|
381
|
+
def get_app_decl(app)
|
382
|
+
Z3::VeryLowLevel.Z3_get_app_decl(_ctx_pointer, app._app)
|
383
|
+
end
|
384
|
+
|
385
|
+
def get_app_num_args(app)
|
386
|
+
Z3::VeryLowLevel.Z3_get_app_num_args(_ctx_pointer, app._app)
|
387
|
+
end
|
388
|
+
|
389
|
+
def get_arity(func_decl)
|
390
|
+
Z3::VeryLowLevel.Z3_get_arity(_ctx_pointer, func_decl._func_decl)
|
391
|
+
end
|
392
|
+
|
393
|
+
def get_array_sort_domain(sort)
|
394
|
+
Z3::VeryLowLevel.Z3_get_array_sort_domain(_ctx_pointer, sort._sort)
|
395
|
+
end
|
396
|
+
|
397
|
+
def get_array_sort_range(sort)
|
398
|
+
Z3::VeryLowLevel.Z3_get_array_sort_range(_ctx_pointer, sort._sort)
|
399
|
+
end
|
400
|
+
|
401
|
+
def get_as_array_func_decl(ast)
|
402
|
+
Z3::VeryLowLevel.Z3_get_as_array_func_decl(_ctx_pointer, ast._ast)
|
403
|
+
end
|
404
|
+
|
405
|
+
def get_ast_hash(ast)
|
406
|
+
Z3::VeryLowLevel.Z3_get_ast_hash(_ctx_pointer, ast._ast)
|
407
|
+
end
|
408
|
+
|
409
|
+
def get_ast_id(ast)
|
410
|
+
Z3::VeryLowLevel.Z3_get_ast_id(_ctx_pointer, ast._ast)
|
411
|
+
end
|
412
|
+
|
413
|
+
def get_ast_kind(ast)
|
414
|
+
Z3::VeryLowLevel.Z3_get_ast_kind(_ctx_pointer, ast._ast)
|
415
|
+
end
|
416
|
+
|
417
|
+
def get_bool_value(ast)
|
418
|
+
Z3::VeryLowLevel.Z3_get_bool_value(_ctx_pointer, ast._ast)
|
419
|
+
end
|
420
|
+
|
421
|
+
def get_bv_sort_size(sort)
|
422
|
+
Z3::VeryLowLevel.Z3_get_bv_sort_size(_ctx_pointer, sort._sort)
|
423
|
+
end
|
424
|
+
|
425
|
+
def get_datatype_sort_constructor(sort, num)
|
426
|
+
Z3::VeryLowLevel.Z3_get_datatype_sort_constructor(_ctx_pointer, sort._sort, num)
|
427
|
+
end
|
428
|
+
|
429
|
+
def get_datatype_sort_constructor_accessor(sort, num1, num2)
|
430
|
+
Z3::VeryLowLevel.Z3_get_datatype_sort_constructor_accessor(_ctx_pointer, sort._sort, num1, num2)
|
431
|
+
end
|
432
|
+
|
433
|
+
def get_datatype_sort_num_constructors(sort)
|
434
|
+
Z3::VeryLowLevel.Z3_get_datatype_sort_num_constructors(_ctx_pointer, sort._sort)
|
435
|
+
end
|
436
|
+
|
437
|
+
def get_datatype_sort_recognizer(sort, num)
|
438
|
+
Z3::VeryLowLevel.Z3_get_datatype_sort_recognizer(_ctx_pointer, sort._sort, num)
|
439
|
+
end
|
440
|
+
|
441
|
+
def get_decl_ast_parameter(func_decl, num)
|
442
|
+
Z3::VeryLowLevel.Z3_get_decl_ast_parameter(_ctx_pointer, func_decl._func_decl, num)
|
443
|
+
end
|
444
|
+
|
445
|
+
def get_decl_double_parameter(func_decl, num)
|
446
|
+
Z3::VeryLowLevel.Z3_get_decl_double_parameter(_ctx_pointer, func_decl._func_decl, num)
|
447
|
+
end
|
448
|
+
|
449
|
+
def get_decl_func_decl_parameter(func_decl, num)
|
450
|
+
Z3::VeryLowLevel.Z3_get_decl_func_decl_parameter(_ctx_pointer, func_decl._func_decl, num)
|
451
|
+
end
|
452
|
+
|
453
|
+
def get_decl_int_parameter(func_decl, num)
|
454
|
+
Z3::VeryLowLevel.Z3_get_decl_int_parameter(_ctx_pointer, func_decl._func_decl, num)
|
455
|
+
end
|
456
|
+
|
457
|
+
def get_decl_kind(func_decl)
|
458
|
+
Z3::VeryLowLevel.Z3_get_decl_kind(_ctx_pointer, func_decl._func_decl)
|
459
|
+
end
|
460
|
+
|
461
|
+
def get_decl_name(func_decl)
|
462
|
+
Z3::VeryLowLevel.Z3_get_decl_name(_ctx_pointer, func_decl._func_decl)
|
463
|
+
end
|
464
|
+
|
465
|
+
def get_decl_num_parameters(func_decl)
|
466
|
+
Z3::VeryLowLevel.Z3_get_decl_num_parameters(_ctx_pointer, func_decl._func_decl)
|
467
|
+
end
|
468
|
+
|
469
|
+
def get_decl_parameter_kind(func_decl, num)
|
470
|
+
Z3::VeryLowLevel.Z3_get_decl_parameter_kind(_ctx_pointer, func_decl._func_decl, num)
|
471
|
+
end
|
472
|
+
|
473
|
+
def get_decl_rational_parameter(func_decl, num)
|
474
|
+
Z3::VeryLowLevel.Z3_get_decl_rational_parameter(_ctx_pointer, func_decl._func_decl, num)
|
475
|
+
end
|
476
|
+
|
477
|
+
def get_decl_sort_parameter(func_decl, num)
|
478
|
+
Z3::VeryLowLevel.Z3_get_decl_sort_parameter(_ctx_pointer, func_decl._func_decl, num)
|
479
|
+
end
|
480
|
+
|
481
|
+
def get_decl_symbol_parameter(func_decl, num)
|
482
|
+
Z3::VeryLowLevel.Z3_get_decl_symbol_parameter(_ctx_pointer, func_decl._func_decl, num)
|
483
|
+
end
|
484
|
+
|
485
|
+
def get_denominator(ast)
|
486
|
+
Z3::VeryLowLevel.Z3_get_denominator(_ctx_pointer, ast._ast)
|
487
|
+
end
|
488
|
+
|
489
|
+
def get_domain(func_decl, num)
|
490
|
+
Z3::VeryLowLevel.Z3_get_domain(_ctx_pointer, func_decl._func_decl, num)
|
491
|
+
end
|
492
|
+
|
493
|
+
def get_domain_size(func_decl)
|
494
|
+
Z3::VeryLowLevel.Z3_get_domain_size(_ctx_pointer, func_decl._func_decl)
|
495
|
+
end
|
496
|
+
|
497
|
+
def get_error_code
|
498
|
+
Z3::VeryLowLevel.Z3_get_error_code(_ctx_pointer)
|
499
|
+
end
|
500
|
+
|
501
|
+
def get_func_decl_id(func_decl)
|
502
|
+
Z3::VeryLowLevel.Z3_get_func_decl_id(_ctx_pointer, func_decl._func_decl)
|
503
|
+
end
|
504
|
+
|
505
|
+
def get_index_value(ast)
|
506
|
+
Z3::VeryLowLevel.Z3_get_index_value(_ctx_pointer, ast._ast)
|
507
|
+
end
|
508
|
+
|
509
|
+
def get_interpolant(ast1, ast2, params)
|
510
|
+
Z3::VeryLowLevel.Z3_get_interpolant(_ctx_pointer, ast1._ast, ast2._ast, params._params)
|
511
|
+
end
|
512
|
+
|
513
|
+
def get_num_probes
|
514
|
+
Z3::VeryLowLevel.Z3_get_num_probes(_ctx_pointer)
|
515
|
+
end
|
516
|
+
|
517
|
+
def get_num_tactics
|
518
|
+
Z3::VeryLowLevel.Z3_get_num_tactics(_ctx_pointer)
|
519
|
+
end
|
520
|
+
|
521
|
+
def get_numeral_decimal_string(ast, num)
|
522
|
+
Z3::VeryLowLevel.Z3_get_numeral_decimal_string(_ctx_pointer, ast._ast, num)
|
523
|
+
end
|
524
|
+
|
525
|
+
def get_numeral_string(ast)
|
526
|
+
Z3::VeryLowLevel.Z3_get_numeral_string(_ctx_pointer, ast._ast)
|
527
|
+
end
|
528
|
+
|
529
|
+
def get_numerator(ast)
|
530
|
+
Z3::VeryLowLevel.Z3_get_numerator(_ctx_pointer, ast._ast)
|
531
|
+
end
|
532
|
+
|
533
|
+
def get_pattern(pattern, num)
|
534
|
+
Z3::VeryLowLevel.Z3_get_pattern(_ctx_pointer, pattern._pattern, num)
|
535
|
+
end
|
536
|
+
|
537
|
+
def get_pattern_num_terms(pattern)
|
538
|
+
Z3::VeryLowLevel.Z3_get_pattern_num_terms(_ctx_pointer, pattern._pattern)
|
539
|
+
end
|
540
|
+
|
541
|
+
def get_probe_name(num)
|
542
|
+
Z3::VeryLowLevel.Z3_get_probe_name(_ctx_pointer, num)
|
543
|
+
end
|
544
|
+
|
545
|
+
def get_quantifier_body(ast)
|
546
|
+
Z3::VeryLowLevel.Z3_get_quantifier_body(_ctx_pointer, ast._ast)
|
547
|
+
end
|
548
|
+
|
549
|
+
def get_quantifier_bound_name(ast, num)
|
550
|
+
Z3::VeryLowLevel.Z3_get_quantifier_bound_name(_ctx_pointer, ast._ast, num)
|
551
|
+
end
|
552
|
+
|
553
|
+
def get_quantifier_bound_sort(ast, num)
|
554
|
+
Z3::VeryLowLevel.Z3_get_quantifier_bound_sort(_ctx_pointer, ast._ast, num)
|
555
|
+
end
|
556
|
+
|
557
|
+
def get_quantifier_no_pattern_ast(ast, num)
|
558
|
+
Z3::VeryLowLevel.Z3_get_quantifier_no_pattern_ast(_ctx_pointer, ast._ast, num)
|
559
|
+
end
|
560
|
+
|
561
|
+
def get_quantifier_num_bound(ast)
|
562
|
+
Z3::VeryLowLevel.Z3_get_quantifier_num_bound(_ctx_pointer, ast._ast)
|
563
|
+
end
|
564
|
+
|
565
|
+
def get_quantifier_num_no_patterns(ast)
|
566
|
+
Z3::VeryLowLevel.Z3_get_quantifier_num_no_patterns(_ctx_pointer, ast._ast)
|
567
|
+
end
|
568
|
+
|
569
|
+
def get_quantifier_num_patterns(ast)
|
570
|
+
Z3::VeryLowLevel.Z3_get_quantifier_num_patterns(_ctx_pointer, ast._ast)
|
571
|
+
end
|
572
|
+
|
573
|
+
def get_quantifier_pattern_ast(ast, num)
|
574
|
+
Z3::VeryLowLevel.Z3_get_quantifier_pattern_ast(_ctx_pointer, ast._ast, num)
|
575
|
+
end
|
576
|
+
|
577
|
+
def get_quantifier_weight(ast)
|
578
|
+
Z3::VeryLowLevel.Z3_get_quantifier_weight(_ctx_pointer, ast._ast)
|
579
|
+
end
|
580
|
+
|
581
|
+
def get_range(func_decl)
|
582
|
+
Z3::VeryLowLevel.Z3_get_range(_ctx_pointer, func_decl._func_decl)
|
583
|
+
end
|
584
|
+
|
585
|
+
def get_relation_arity(sort)
|
586
|
+
Z3::VeryLowLevel.Z3_get_relation_arity(_ctx_pointer, sort._sort)
|
587
|
+
end
|
588
|
+
|
589
|
+
def get_relation_column(sort, num)
|
590
|
+
Z3::VeryLowLevel.Z3_get_relation_column(_ctx_pointer, sort._sort, num)
|
591
|
+
end
|
592
|
+
|
593
|
+
def get_smtlib_assumption(num)
|
594
|
+
Z3::VeryLowLevel.Z3_get_smtlib_assumption(_ctx_pointer, num)
|
595
|
+
end
|
596
|
+
|
597
|
+
def get_smtlib_decl(num)
|
598
|
+
Z3::VeryLowLevel.Z3_get_smtlib_decl(_ctx_pointer, num)
|
599
|
+
end
|
600
|
+
|
601
|
+
def get_smtlib_error
|
602
|
+
Z3::VeryLowLevel.Z3_get_smtlib_error(_ctx_pointer)
|
603
|
+
end
|
604
|
+
|
605
|
+
def get_smtlib_formula(num)
|
606
|
+
Z3::VeryLowLevel.Z3_get_smtlib_formula(_ctx_pointer, num)
|
607
|
+
end
|
608
|
+
|
609
|
+
def get_smtlib_num_assumptions
|
610
|
+
Z3::VeryLowLevel.Z3_get_smtlib_num_assumptions(_ctx_pointer)
|
611
|
+
end
|
612
|
+
|
613
|
+
def get_smtlib_num_decls
|
614
|
+
Z3::VeryLowLevel.Z3_get_smtlib_num_decls(_ctx_pointer)
|
615
|
+
end
|
616
|
+
|
617
|
+
def get_smtlib_num_formulas
|
618
|
+
Z3::VeryLowLevel.Z3_get_smtlib_num_formulas(_ctx_pointer)
|
619
|
+
end
|
620
|
+
|
621
|
+
def get_smtlib_num_sorts
|
622
|
+
Z3::VeryLowLevel.Z3_get_smtlib_num_sorts(_ctx_pointer)
|
623
|
+
end
|
624
|
+
|
625
|
+
def get_smtlib_sort(num)
|
626
|
+
Z3::VeryLowLevel.Z3_get_smtlib_sort(_ctx_pointer, num)
|
627
|
+
end
|
628
|
+
|
629
|
+
def get_sort(ast)
|
630
|
+
Z3::VeryLowLevel.Z3_get_sort(_ctx_pointer, ast._ast)
|
631
|
+
end
|
632
|
+
|
633
|
+
def get_sort_id(sort)
|
634
|
+
Z3::VeryLowLevel.Z3_get_sort_id(_ctx_pointer, sort._sort)
|
635
|
+
end
|
636
|
+
|
637
|
+
def get_sort_kind(sort)
|
638
|
+
Z3::VeryLowLevel.Z3_get_sort_kind(_ctx_pointer, sort._sort)
|
639
|
+
end
|
640
|
+
|
641
|
+
def get_sort_name(sort)
|
642
|
+
Z3::VeryLowLevel.Z3_get_sort_name(_ctx_pointer, sort._sort)
|
643
|
+
end
|
644
|
+
|
645
|
+
def get_symbol_int(sym)
|
646
|
+
Z3::VeryLowLevel.Z3_get_symbol_int(_ctx_pointer, sym)
|
647
|
+
end
|
648
|
+
|
649
|
+
def get_symbol_kind(sym)
|
650
|
+
Z3::VeryLowLevel.Z3_get_symbol_kind(_ctx_pointer, sym)
|
651
|
+
end
|
652
|
+
|
653
|
+
def get_symbol_string(sym)
|
654
|
+
Z3::VeryLowLevel.Z3_get_symbol_string(_ctx_pointer, sym)
|
655
|
+
end
|
656
|
+
|
657
|
+
def get_tactic_name(num)
|
658
|
+
Z3::VeryLowLevel.Z3_get_tactic_name(_ctx_pointer, num)
|
659
|
+
end
|
660
|
+
|
661
|
+
def get_tuple_sort_field_decl(sort, num)
|
662
|
+
Z3::VeryLowLevel.Z3_get_tuple_sort_field_decl(_ctx_pointer, sort._sort, num)
|
663
|
+
end
|
664
|
+
|
665
|
+
def get_tuple_sort_mk_decl(sort)
|
666
|
+
Z3::VeryLowLevel.Z3_get_tuple_sort_mk_decl(_ctx_pointer, sort._sort)
|
667
|
+
end
|
668
|
+
|
669
|
+
def get_tuple_sort_num_fields(sort)
|
670
|
+
Z3::VeryLowLevel.Z3_get_tuple_sort_num_fields(_ctx_pointer, sort._sort)
|
671
|
+
end
|
672
|
+
|
673
|
+
def global_param_reset_all
|
674
|
+
Z3::VeryLowLevel.Z3_global_param_reset_all()
|
675
|
+
end
|
676
|
+
|
677
|
+
def global_param_set(str1, str2)
|
678
|
+
Z3::VeryLowLevel.Z3_global_param_set(str1, str2)
|
679
|
+
end
|
680
|
+
|
681
|
+
def goal_assert(goal, ast)
|
682
|
+
Z3::VeryLowLevel.Z3_goal_assert(_ctx_pointer, goal._goal, ast._ast)
|
683
|
+
end
|
684
|
+
|
685
|
+
def goal_dec_ref(goal)
|
686
|
+
Z3::VeryLowLevel.Z3_goal_dec_ref(_ctx_pointer, goal._goal)
|
687
|
+
end
|
688
|
+
|
689
|
+
def goal_depth(goal)
|
690
|
+
Z3::VeryLowLevel.Z3_goal_depth(_ctx_pointer, goal._goal)
|
691
|
+
end
|
692
|
+
|
693
|
+
def goal_formula(goal, num)
|
694
|
+
Z3::VeryLowLevel.Z3_goal_formula(_ctx_pointer, goal._goal, num)
|
695
|
+
end
|
696
|
+
|
697
|
+
def goal_inc_ref(goal)
|
698
|
+
Z3::VeryLowLevel.Z3_goal_inc_ref(_ctx_pointer, goal._goal)
|
699
|
+
end
|
700
|
+
|
701
|
+
def goal_inconsistent(goal)
|
702
|
+
Z3::VeryLowLevel.Z3_goal_inconsistent(_ctx_pointer, goal._goal)
|
703
|
+
end
|
704
|
+
|
705
|
+
def goal_is_decided_sat(goal)
|
706
|
+
Z3::VeryLowLevel.Z3_goal_is_decided_sat(_ctx_pointer, goal._goal)
|
707
|
+
end
|
708
|
+
|
709
|
+
def goal_is_decided_unsat(goal)
|
710
|
+
Z3::VeryLowLevel.Z3_goal_is_decided_unsat(_ctx_pointer, goal._goal)
|
711
|
+
end
|
712
|
+
|
713
|
+
def goal_num_exprs(goal)
|
714
|
+
Z3::VeryLowLevel.Z3_goal_num_exprs(_ctx_pointer, goal._goal)
|
715
|
+
end
|
716
|
+
|
717
|
+
def goal_precision(goal)
|
718
|
+
Z3::VeryLowLevel.Z3_goal_precision(_ctx_pointer, goal._goal)
|
719
|
+
end
|
720
|
+
|
721
|
+
def goal_reset(goal)
|
722
|
+
Z3::VeryLowLevel.Z3_goal_reset(_ctx_pointer, goal._goal)
|
723
|
+
end
|
724
|
+
|
725
|
+
def goal_size(goal)
|
726
|
+
Z3::VeryLowLevel.Z3_goal_size(_ctx_pointer, goal._goal)
|
727
|
+
end
|
728
|
+
|
729
|
+
def goal_to_string(goal)
|
730
|
+
Z3::VeryLowLevel.Z3_goal_to_string(_ctx_pointer, goal._goal)
|
731
|
+
end
|
732
|
+
|
733
|
+
def goal_translate(goal, context)
|
734
|
+
Z3::VeryLowLevel.Z3_goal_translate(_ctx_pointer, goal._goal, context._context)
|
735
|
+
end
|
736
|
+
|
737
|
+
def inc_ref(ast)
|
738
|
+
Z3::VeryLowLevel.Z3_inc_ref(_ctx_pointer, ast._ast)
|
739
|
+
end
|
740
|
+
|
741
|
+
def interpolation_profile
|
742
|
+
Z3::VeryLowLevel.Z3_interpolation_profile(_ctx_pointer)
|
743
|
+
end
|
744
|
+
|
745
|
+
def interrupt
|
746
|
+
Z3::VeryLowLevel.Z3_interrupt(_ctx_pointer)
|
747
|
+
end
|
748
|
+
|
749
|
+
def is_algebraic_number(ast)
|
750
|
+
Z3::VeryLowLevel.Z3_is_algebraic_number(_ctx_pointer, ast._ast)
|
751
|
+
end
|
752
|
+
|
753
|
+
def is_app(ast)
|
754
|
+
Z3::VeryLowLevel.Z3_is_app(_ctx_pointer, ast._ast)
|
755
|
+
end
|
756
|
+
|
757
|
+
def is_as_array(ast)
|
758
|
+
Z3::VeryLowLevel.Z3_is_as_array(_ctx_pointer, ast._ast)
|
759
|
+
end
|
760
|
+
|
761
|
+
def is_eq_ast(ast1, ast2)
|
762
|
+
Z3::VeryLowLevel.Z3_is_eq_ast(_ctx_pointer, ast1._ast, ast2._ast)
|
763
|
+
end
|
764
|
+
|
765
|
+
def is_eq_func_decl(func_decl1, func_decl2)
|
766
|
+
Z3::VeryLowLevel.Z3_is_eq_func_decl(_ctx_pointer, func_decl1._func_decl, func_decl2._func_decl)
|
767
|
+
end
|
768
|
+
|
769
|
+
def is_eq_sort(sort1, sort2)
|
770
|
+
Z3::VeryLowLevel.Z3_is_eq_sort(_ctx_pointer, sort1._sort, sort2._sort)
|
771
|
+
end
|
772
|
+
|
773
|
+
def is_numeral_ast(ast)
|
774
|
+
Z3::VeryLowLevel.Z3_is_numeral_ast(_ctx_pointer, ast._ast)
|
775
|
+
end
|
776
|
+
|
777
|
+
def is_quantifier_forall(ast)
|
778
|
+
Z3::VeryLowLevel.Z3_is_quantifier_forall(_ctx_pointer, ast._ast)
|
779
|
+
end
|
780
|
+
|
781
|
+
def is_well_sorted(ast)
|
782
|
+
Z3::VeryLowLevel.Z3_is_well_sorted(_ctx_pointer, ast._ast)
|
783
|
+
end
|
784
|
+
|
785
|
+
def mk_array_default(ast)
|
786
|
+
Z3::VeryLowLevel.Z3_mk_array_default(_ctx_pointer, ast._ast)
|
787
|
+
end
|
788
|
+
|
789
|
+
def mk_array_sort(sort1, sort2)
|
790
|
+
Z3::VeryLowLevel.Z3_mk_array_sort(_ctx_pointer, sort1._sort, sort2._sort)
|
791
|
+
end
|
792
|
+
|
793
|
+
def mk_ast_map
|
794
|
+
Z3::VeryLowLevel.Z3_mk_ast_map(_ctx_pointer)
|
795
|
+
end
|
796
|
+
|
797
|
+
def mk_ast_vector
|
798
|
+
Z3::VeryLowLevel.Z3_mk_ast_vector(_ctx_pointer)
|
799
|
+
end
|
800
|
+
|
801
|
+
def mk_bool_sort
|
802
|
+
Z3::VeryLowLevel.Z3_mk_bool_sort(_ctx_pointer)
|
803
|
+
end
|
804
|
+
|
805
|
+
def mk_bound(num, sort)
|
806
|
+
Z3::VeryLowLevel.Z3_mk_bound(_ctx_pointer, num, sort._sort)
|
807
|
+
end
|
808
|
+
|
809
|
+
def mk_bv2int(ast, bool)
|
810
|
+
Z3::VeryLowLevel.Z3_mk_bv2int(_ctx_pointer, ast._ast, bool)
|
811
|
+
end
|
812
|
+
|
813
|
+
def mk_bv_sort(num)
|
814
|
+
Z3::VeryLowLevel.Z3_mk_bv_sort(_ctx_pointer, num)
|
815
|
+
end
|
816
|
+
|
817
|
+
def mk_bvadd(ast1, ast2)
|
818
|
+
Z3::VeryLowLevel.Z3_mk_bvadd(_ctx_pointer, ast1._ast, ast2._ast)
|
819
|
+
end
|
820
|
+
|
821
|
+
def mk_bvadd_no_overflow(ast1, ast2, bool)
|
822
|
+
Z3::VeryLowLevel.Z3_mk_bvadd_no_overflow(_ctx_pointer, ast1._ast, ast2._ast, bool)
|
823
|
+
end
|
824
|
+
|
825
|
+
def mk_bvadd_no_underflow(ast1, ast2)
|
826
|
+
Z3::VeryLowLevel.Z3_mk_bvadd_no_underflow(_ctx_pointer, ast1._ast, ast2._ast)
|
827
|
+
end
|
828
|
+
|
829
|
+
def mk_bvand(ast1, ast2)
|
830
|
+
Z3::VeryLowLevel.Z3_mk_bvand(_ctx_pointer, ast1._ast, ast2._ast)
|
831
|
+
end
|
832
|
+
|
833
|
+
def mk_bvashr(ast1, ast2)
|
834
|
+
Z3::VeryLowLevel.Z3_mk_bvashr(_ctx_pointer, ast1._ast, ast2._ast)
|
835
|
+
end
|
836
|
+
|
837
|
+
def mk_bvlshr(ast1, ast2)
|
838
|
+
Z3::VeryLowLevel.Z3_mk_bvlshr(_ctx_pointer, ast1._ast, ast2._ast)
|
839
|
+
end
|
840
|
+
|
841
|
+
def mk_bvmul(ast1, ast2)
|
842
|
+
Z3::VeryLowLevel.Z3_mk_bvmul(_ctx_pointer, ast1._ast, ast2._ast)
|
843
|
+
end
|
844
|
+
|
845
|
+
def mk_bvmul_no_overflow(ast1, ast2, bool)
|
846
|
+
Z3::VeryLowLevel.Z3_mk_bvmul_no_overflow(_ctx_pointer, ast1._ast, ast2._ast, bool)
|
847
|
+
end
|
848
|
+
|
849
|
+
def mk_bvmul_no_underflow(ast1, ast2)
|
850
|
+
Z3::VeryLowLevel.Z3_mk_bvmul_no_underflow(_ctx_pointer, ast1._ast, ast2._ast)
|
851
|
+
end
|
852
|
+
|
853
|
+
def mk_bvnand(ast1, ast2)
|
854
|
+
Z3::VeryLowLevel.Z3_mk_bvnand(_ctx_pointer, ast1._ast, ast2._ast)
|
855
|
+
end
|
856
|
+
|
857
|
+
def mk_bvneg(ast)
|
858
|
+
Z3::VeryLowLevel.Z3_mk_bvneg(_ctx_pointer, ast._ast)
|
859
|
+
end
|
860
|
+
|
861
|
+
def mk_bvneg_no_overflow(ast)
|
862
|
+
Z3::VeryLowLevel.Z3_mk_bvneg_no_overflow(_ctx_pointer, ast._ast)
|
863
|
+
end
|
864
|
+
|
865
|
+
def mk_bvnor(ast1, ast2)
|
866
|
+
Z3::VeryLowLevel.Z3_mk_bvnor(_ctx_pointer, ast1._ast, ast2._ast)
|
867
|
+
end
|
868
|
+
|
869
|
+
def mk_bvnot(ast)
|
870
|
+
Z3::VeryLowLevel.Z3_mk_bvnot(_ctx_pointer, ast._ast)
|
871
|
+
end
|
872
|
+
|
873
|
+
def mk_bvor(ast1, ast2)
|
874
|
+
Z3::VeryLowLevel.Z3_mk_bvor(_ctx_pointer, ast1._ast, ast2._ast)
|
875
|
+
end
|
876
|
+
|
877
|
+
def mk_bvredand(ast)
|
878
|
+
Z3::VeryLowLevel.Z3_mk_bvredand(_ctx_pointer, ast._ast)
|
879
|
+
end
|
880
|
+
|
881
|
+
def mk_bvredor(ast)
|
882
|
+
Z3::VeryLowLevel.Z3_mk_bvredor(_ctx_pointer, ast._ast)
|
883
|
+
end
|
884
|
+
|
885
|
+
def mk_bvsdiv(ast1, ast2)
|
886
|
+
Z3::VeryLowLevel.Z3_mk_bvsdiv(_ctx_pointer, ast1._ast, ast2._ast)
|
887
|
+
end
|
888
|
+
|
889
|
+
def mk_bvsdiv_no_overflow(ast1, ast2)
|
890
|
+
Z3::VeryLowLevel.Z3_mk_bvsdiv_no_overflow(_ctx_pointer, ast1._ast, ast2._ast)
|
891
|
+
end
|
892
|
+
|
893
|
+
def mk_bvsge(ast1, ast2)
|
894
|
+
Z3::VeryLowLevel.Z3_mk_bvsge(_ctx_pointer, ast1._ast, ast2._ast)
|
895
|
+
end
|
896
|
+
|
897
|
+
def mk_bvsgt(ast1, ast2)
|
898
|
+
Z3::VeryLowLevel.Z3_mk_bvsgt(_ctx_pointer, ast1._ast, ast2._ast)
|
899
|
+
end
|
900
|
+
|
901
|
+
def mk_bvshl(ast1, ast2)
|
902
|
+
Z3::VeryLowLevel.Z3_mk_bvshl(_ctx_pointer, ast1._ast, ast2._ast)
|
903
|
+
end
|
904
|
+
|
905
|
+
def mk_bvsle(ast1, ast2)
|
906
|
+
Z3::VeryLowLevel.Z3_mk_bvsle(_ctx_pointer, ast1._ast, ast2._ast)
|
907
|
+
end
|
908
|
+
|
909
|
+
def mk_bvslt(ast1, ast2)
|
910
|
+
Z3::VeryLowLevel.Z3_mk_bvslt(_ctx_pointer, ast1._ast, ast2._ast)
|
911
|
+
end
|
912
|
+
|
913
|
+
def mk_bvsmod(ast1, ast2)
|
914
|
+
Z3::VeryLowLevel.Z3_mk_bvsmod(_ctx_pointer, ast1._ast, ast2._ast)
|
915
|
+
end
|
916
|
+
|
917
|
+
def mk_bvsrem(ast1, ast2)
|
918
|
+
Z3::VeryLowLevel.Z3_mk_bvsrem(_ctx_pointer, ast1._ast, ast2._ast)
|
919
|
+
end
|
920
|
+
|
921
|
+
def mk_bvsub(ast1, ast2)
|
922
|
+
Z3::VeryLowLevel.Z3_mk_bvsub(_ctx_pointer, ast1._ast, ast2._ast)
|
923
|
+
end
|
924
|
+
|
925
|
+
def mk_bvsub_no_overflow(ast1, ast2)
|
926
|
+
Z3::VeryLowLevel.Z3_mk_bvsub_no_overflow(_ctx_pointer, ast1._ast, ast2._ast)
|
927
|
+
end
|
928
|
+
|
929
|
+
def mk_bvsub_no_underflow(ast1, ast2, bool)
|
930
|
+
Z3::VeryLowLevel.Z3_mk_bvsub_no_underflow(_ctx_pointer, ast1._ast, ast2._ast, bool)
|
931
|
+
end
|
932
|
+
|
933
|
+
def mk_bvudiv(ast1, ast2)
|
934
|
+
Z3::VeryLowLevel.Z3_mk_bvudiv(_ctx_pointer, ast1._ast, ast2._ast)
|
935
|
+
end
|
936
|
+
|
937
|
+
def mk_bvuge(ast1, ast2)
|
938
|
+
Z3::VeryLowLevel.Z3_mk_bvuge(_ctx_pointer, ast1._ast, ast2._ast)
|
939
|
+
end
|
940
|
+
|
941
|
+
def mk_bvugt(ast1, ast2)
|
942
|
+
Z3::VeryLowLevel.Z3_mk_bvugt(_ctx_pointer, ast1._ast, ast2._ast)
|
943
|
+
end
|
944
|
+
|
945
|
+
def mk_bvule(ast1, ast2)
|
946
|
+
Z3::VeryLowLevel.Z3_mk_bvule(_ctx_pointer, ast1._ast, ast2._ast)
|
947
|
+
end
|
948
|
+
|
949
|
+
def mk_bvult(ast1, ast2)
|
950
|
+
Z3::VeryLowLevel.Z3_mk_bvult(_ctx_pointer, ast1._ast, ast2._ast)
|
951
|
+
end
|
952
|
+
|
953
|
+
def mk_bvurem(ast1, ast2)
|
954
|
+
Z3::VeryLowLevel.Z3_mk_bvurem(_ctx_pointer, ast1._ast, ast2._ast)
|
955
|
+
end
|
956
|
+
|
957
|
+
def mk_bvxnor(ast1, ast2)
|
958
|
+
Z3::VeryLowLevel.Z3_mk_bvxnor(_ctx_pointer, ast1._ast, ast2._ast)
|
959
|
+
end
|
960
|
+
|
961
|
+
def mk_bvxor(ast1, ast2)
|
962
|
+
Z3::VeryLowLevel.Z3_mk_bvxor(_ctx_pointer, ast1._ast, ast2._ast)
|
963
|
+
end
|
964
|
+
|
965
|
+
def mk_concat(ast1, ast2)
|
966
|
+
Z3::VeryLowLevel.Z3_mk_concat(_ctx_pointer, ast1._ast, ast2._ast)
|
967
|
+
end
|
968
|
+
|
969
|
+
def mk_config
|
970
|
+
Z3::VeryLowLevel.Z3_mk_config()
|
971
|
+
end
|
972
|
+
|
973
|
+
def mk_const(sym, sort)
|
974
|
+
Z3::VeryLowLevel.Z3_mk_const(_ctx_pointer, sym, sort._sort)
|
975
|
+
end
|
976
|
+
|
977
|
+
def mk_const_array(sort, ast)
|
978
|
+
Z3::VeryLowLevel.Z3_mk_const_array(_ctx_pointer, sort._sort, ast._ast)
|
979
|
+
end
|
980
|
+
|
981
|
+
def mk_context_rc(config)
|
982
|
+
Z3::VeryLowLevel.Z3_mk_context_rc(config._config)
|
983
|
+
end
|
984
|
+
|
985
|
+
def mk_div(ast1, ast2)
|
986
|
+
Z3::VeryLowLevel.Z3_mk_div(_ctx_pointer, ast1._ast, ast2._ast)
|
987
|
+
end
|
988
|
+
|
989
|
+
def mk_empty_set(sort)
|
990
|
+
Z3::VeryLowLevel.Z3_mk_empty_set(_ctx_pointer, sort._sort)
|
991
|
+
end
|
992
|
+
|
993
|
+
def mk_eq(ast1, ast2)
|
994
|
+
Z3::VeryLowLevel.Z3_mk_eq(_ctx_pointer, ast1._ast, ast2._ast)
|
995
|
+
end
|
996
|
+
|
997
|
+
def mk_ext_rotate_left(ast1, ast2)
|
998
|
+
Z3::VeryLowLevel.Z3_mk_ext_rotate_left(_ctx_pointer, ast1._ast, ast2._ast)
|
999
|
+
end
|
1000
|
+
|
1001
|
+
def mk_ext_rotate_right(ast1, ast2)
|
1002
|
+
Z3::VeryLowLevel.Z3_mk_ext_rotate_right(_ctx_pointer, ast1._ast, ast2._ast)
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
def mk_extract(num1, num2, ast)
|
1006
|
+
Z3::VeryLowLevel.Z3_mk_extract(_ctx_pointer, num1, num2, ast._ast)
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
def mk_false
|
1010
|
+
Z3::VeryLowLevel.Z3_mk_false(_ctx_pointer)
|
1011
|
+
end
|
1012
|
+
|
1013
|
+
def mk_finite_domain_sort(sym, num)
|
1014
|
+
Z3::VeryLowLevel.Z3_mk_finite_domain_sort(_ctx_pointer, sym, num)
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
def mk_fixedpoint
|
1018
|
+
Z3::VeryLowLevel.Z3_mk_fixedpoint(_ctx_pointer)
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
def mk_fpa_abs(ast)
|
1022
|
+
Z3::VeryLowLevel.Z3_mk_fpa_abs(_ctx_pointer, ast._ast)
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
def mk_fpa_add(ast1, ast2, ast3)
|
1026
|
+
Z3::VeryLowLevel.Z3_mk_fpa_add(_ctx_pointer, ast1._ast, ast2._ast, ast3._ast)
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
def mk_fpa_div(ast1, ast2, ast3)
|
1030
|
+
Z3::VeryLowLevel.Z3_mk_fpa_div(_ctx_pointer, ast1._ast, ast2._ast, ast3._ast)
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
def mk_fpa_eq(ast1, ast2)
|
1034
|
+
Z3::VeryLowLevel.Z3_mk_fpa_eq(_ctx_pointer, ast1._ast, ast2._ast)
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
def mk_fpa_fma(ast1, ast2, ast3, ast4)
|
1038
|
+
Z3::VeryLowLevel.Z3_mk_fpa_fma(_ctx_pointer, ast1._ast, ast2._ast, ast3._ast, ast4._ast)
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
def mk_fpa_fp(ast1, ast2, ast3)
|
1042
|
+
Z3::VeryLowLevel.Z3_mk_fpa_fp(_ctx_pointer, ast1._ast, ast2._ast, ast3._ast)
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
def mk_fpa_geq(ast1, ast2)
|
1046
|
+
Z3::VeryLowLevel.Z3_mk_fpa_geq(_ctx_pointer, ast1._ast, ast2._ast)
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
def mk_fpa_gt(ast1, ast2)
|
1050
|
+
Z3::VeryLowLevel.Z3_mk_fpa_gt(_ctx_pointer, ast1._ast, ast2._ast)
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
def mk_fpa_inf(sort, bool)
|
1054
|
+
Z3::VeryLowLevel.Z3_mk_fpa_inf(_ctx_pointer, sort._sort, bool)
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
def mk_fpa_is_infinite(ast)
|
1058
|
+
Z3::VeryLowLevel.Z3_mk_fpa_is_infinite(_ctx_pointer, ast._ast)
|
1059
|
+
end
|
1060
|
+
|
1061
|
+
def mk_fpa_is_nan(ast)
|
1062
|
+
Z3::VeryLowLevel.Z3_mk_fpa_is_nan(_ctx_pointer, ast._ast)
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
def mk_fpa_is_negative(ast)
|
1066
|
+
Z3::VeryLowLevel.Z3_mk_fpa_is_negative(_ctx_pointer, ast._ast)
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
def mk_fpa_is_normal(ast)
|
1070
|
+
Z3::VeryLowLevel.Z3_mk_fpa_is_normal(_ctx_pointer, ast._ast)
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
def mk_fpa_is_positive(ast)
|
1074
|
+
Z3::VeryLowLevel.Z3_mk_fpa_is_positive(_ctx_pointer, ast._ast)
|
1075
|
+
end
|
1076
|
+
|
1077
|
+
def mk_fpa_is_subnormal(ast)
|
1078
|
+
Z3::VeryLowLevel.Z3_mk_fpa_is_subnormal(_ctx_pointer, ast._ast)
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
def mk_fpa_is_zero(ast)
|
1082
|
+
Z3::VeryLowLevel.Z3_mk_fpa_is_zero(_ctx_pointer, ast._ast)
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
def mk_fpa_leq(ast1, ast2)
|
1086
|
+
Z3::VeryLowLevel.Z3_mk_fpa_leq(_ctx_pointer, ast1._ast, ast2._ast)
|
1087
|
+
end
|
1088
|
+
|
1089
|
+
def mk_fpa_lt(ast1, ast2)
|
1090
|
+
Z3::VeryLowLevel.Z3_mk_fpa_lt(_ctx_pointer, ast1._ast, ast2._ast)
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
def mk_fpa_max(ast1, ast2)
|
1094
|
+
Z3::VeryLowLevel.Z3_mk_fpa_max(_ctx_pointer, ast1._ast, ast2._ast)
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
def mk_fpa_min(ast1, ast2)
|
1098
|
+
Z3::VeryLowLevel.Z3_mk_fpa_min(_ctx_pointer, ast1._ast, ast2._ast)
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
def mk_fpa_mul(ast1, ast2, ast3)
|
1102
|
+
Z3::VeryLowLevel.Z3_mk_fpa_mul(_ctx_pointer, ast1._ast, ast2._ast, ast3._ast)
|
1103
|
+
end
|
1104
|
+
|
1105
|
+
def mk_fpa_nan(sort)
|
1106
|
+
Z3::VeryLowLevel.Z3_mk_fpa_nan(_ctx_pointer, sort._sort)
|
1107
|
+
end
|
1108
|
+
|
1109
|
+
def mk_fpa_neg(ast)
|
1110
|
+
Z3::VeryLowLevel.Z3_mk_fpa_neg(_ctx_pointer, ast._ast)
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
def mk_fpa_numeral_double(double, sort)
|
1114
|
+
Z3::VeryLowLevel.Z3_mk_fpa_numeral_double(_ctx_pointer, double, sort._sort)
|
1115
|
+
end
|
1116
|
+
|
1117
|
+
def mk_fpa_numeral_float(float, sort)
|
1118
|
+
Z3::VeryLowLevel.Z3_mk_fpa_numeral_float(_ctx_pointer, float, sort._sort)
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
def mk_fpa_numeral_int(num, sort)
|
1122
|
+
Z3::VeryLowLevel.Z3_mk_fpa_numeral_int(_ctx_pointer, num, sort._sort)
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
def mk_fpa_numeral_int64_uint64(bool, num1, num2, sort)
|
1126
|
+
Z3::VeryLowLevel.Z3_mk_fpa_numeral_int64_uint64(_ctx_pointer, bool, num1, num2, sort._sort)
|
1127
|
+
end
|
1128
|
+
|
1129
|
+
def mk_fpa_numeral_int_uint(bool, num1, num2, sort)
|
1130
|
+
Z3::VeryLowLevel.Z3_mk_fpa_numeral_int_uint(_ctx_pointer, bool, num1, num2, sort._sort)
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
def mk_fpa_rem(ast1, ast2)
|
1134
|
+
Z3::VeryLowLevel.Z3_mk_fpa_rem(_ctx_pointer, ast1._ast, ast2._ast)
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
def mk_fpa_rna
|
1138
|
+
Z3::VeryLowLevel.Z3_mk_fpa_rna(_ctx_pointer)
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
def mk_fpa_rne
|
1142
|
+
Z3::VeryLowLevel.Z3_mk_fpa_rne(_ctx_pointer)
|
1143
|
+
end
|
1144
|
+
|
1145
|
+
def mk_fpa_round_nearest_ties_to_away
|
1146
|
+
Z3::VeryLowLevel.Z3_mk_fpa_round_nearest_ties_to_away(_ctx_pointer)
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
def mk_fpa_round_nearest_ties_to_even
|
1150
|
+
Z3::VeryLowLevel.Z3_mk_fpa_round_nearest_ties_to_even(_ctx_pointer)
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
def mk_fpa_round_to_integral(ast1, ast2)
|
1154
|
+
Z3::VeryLowLevel.Z3_mk_fpa_round_to_integral(_ctx_pointer, ast1._ast, ast2._ast)
|
1155
|
+
end
|
1156
|
+
|
1157
|
+
def mk_fpa_round_toward_negative
|
1158
|
+
Z3::VeryLowLevel.Z3_mk_fpa_round_toward_negative(_ctx_pointer)
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
def mk_fpa_round_toward_positive
|
1162
|
+
Z3::VeryLowLevel.Z3_mk_fpa_round_toward_positive(_ctx_pointer)
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
def mk_fpa_round_toward_zero
|
1166
|
+
Z3::VeryLowLevel.Z3_mk_fpa_round_toward_zero(_ctx_pointer)
|
1167
|
+
end
|
1168
|
+
|
1169
|
+
def mk_fpa_rounding_mode_sort
|
1170
|
+
Z3::VeryLowLevel.Z3_mk_fpa_rounding_mode_sort(_ctx_pointer)
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
def mk_fpa_rtn
|
1174
|
+
Z3::VeryLowLevel.Z3_mk_fpa_rtn(_ctx_pointer)
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
def mk_fpa_rtp
|
1178
|
+
Z3::VeryLowLevel.Z3_mk_fpa_rtp(_ctx_pointer)
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
def mk_fpa_rtz
|
1182
|
+
Z3::VeryLowLevel.Z3_mk_fpa_rtz(_ctx_pointer)
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
def mk_fpa_sort(num1, num2)
|
1186
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sort(_ctx_pointer, num1, num2)
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
def mk_fpa_sort_128
|
1190
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sort_128(_ctx_pointer)
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
def mk_fpa_sort_16
|
1194
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sort_16(_ctx_pointer)
|
1195
|
+
end
|
1196
|
+
|
1197
|
+
def mk_fpa_sort_32
|
1198
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sort_32(_ctx_pointer)
|
1199
|
+
end
|
1200
|
+
|
1201
|
+
def mk_fpa_sort_64
|
1202
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sort_64(_ctx_pointer)
|
1203
|
+
end
|
1204
|
+
|
1205
|
+
def mk_fpa_sort_double
|
1206
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sort_double(_ctx_pointer)
|
1207
|
+
end
|
1208
|
+
|
1209
|
+
def mk_fpa_sort_half
|
1210
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sort_half(_ctx_pointer)
|
1211
|
+
end
|
1212
|
+
|
1213
|
+
def mk_fpa_sort_quadruple
|
1214
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sort_quadruple(_ctx_pointer)
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
def mk_fpa_sort_single
|
1218
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sort_single(_ctx_pointer)
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
def mk_fpa_sqrt(ast1, ast2)
|
1222
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sqrt(_ctx_pointer, ast1._ast, ast2._ast)
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
def mk_fpa_sub(ast1, ast2, ast3)
|
1226
|
+
Z3::VeryLowLevel.Z3_mk_fpa_sub(_ctx_pointer, ast1._ast, ast2._ast, ast3._ast)
|
1227
|
+
end
|
1228
|
+
|
1229
|
+
def mk_fpa_to_fp_bv(ast, sort)
|
1230
|
+
Z3::VeryLowLevel.Z3_mk_fpa_to_fp_bv(_ctx_pointer, ast._ast, sort._sort)
|
1231
|
+
end
|
1232
|
+
|
1233
|
+
def mk_fpa_to_fp_float(ast1, ast2, sort)
|
1234
|
+
Z3::VeryLowLevel.Z3_mk_fpa_to_fp_float(_ctx_pointer, ast1._ast, ast2._ast, sort._sort)
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
def mk_fpa_to_fp_int_real(ast1, ast2, ast3, sort)
|
1238
|
+
Z3::VeryLowLevel.Z3_mk_fpa_to_fp_int_real(_ctx_pointer, ast1._ast, ast2._ast, ast3._ast, sort._sort)
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
def mk_fpa_to_fp_real(ast1, ast2, sort)
|
1242
|
+
Z3::VeryLowLevel.Z3_mk_fpa_to_fp_real(_ctx_pointer, ast1._ast, ast2._ast, sort._sort)
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
def mk_fpa_to_fp_signed(ast1, ast2, sort)
|
1246
|
+
Z3::VeryLowLevel.Z3_mk_fpa_to_fp_signed(_ctx_pointer, ast1._ast, ast2._ast, sort._sort)
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
def mk_fpa_to_fp_unsigned(ast1, ast2, sort)
|
1250
|
+
Z3::VeryLowLevel.Z3_mk_fpa_to_fp_unsigned(_ctx_pointer, ast1._ast, ast2._ast, sort._sort)
|
1251
|
+
end
|
1252
|
+
|
1253
|
+
def mk_fpa_to_ieee_bv(ast)
|
1254
|
+
Z3::VeryLowLevel.Z3_mk_fpa_to_ieee_bv(_ctx_pointer, ast._ast)
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
def mk_fpa_to_real(ast)
|
1258
|
+
Z3::VeryLowLevel.Z3_mk_fpa_to_real(_ctx_pointer, ast._ast)
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
def mk_fpa_to_sbv(ast1, ast2, num)
|
1262
|
+
Z3::VeryLowLevel.Z3_mk_fpa_to_sbv(_ctx_pointer, ast1._ast, ast2._ast, num)
|
1263
|
+
end
|
1264
|
+
|
1265
|
+
def mk_fpa_to_ubv(ast1, ast2, num)
|
1266
|
+
Z3::VeryLowLevel.Z3_mk_fpa_to_ubv(_ctx_pointer, ast1._ast, ast2._ast, num)
|
1267
|
+
end
|
1268
|
+
|
1269
|
+
def mk_fpa_zero(sort, bool)
|
1270
|
+
Z3::VeryLowLevel.Z3_mk_fpa_zero(_ctx_pointer, sort._sort, bool)
|
1271
|
+
end
|
1272
|
+
|
1273
|
+
def mk_fresh_const(str, sort)
|
1274
|
+
Z3::VeryLowLevel.Z3_mk_fresh_const(_ctx_pointer, str, sort._sort)
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
def mk_full_set(sort)
|
1278
|
+
Z3::VeryLowLevel.Z3_mk_full_set(_ctx_pointer, sort._sort)
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
def mk_ge(ast1, ast2)
|
1282
|
+
Z3::VeryLowLevel.Z3_mk_ge(_ctx_pointer, ast1._ast, ast2._ast)
|
1283
|
+
end
|
1284
|
+
|
1285
|
+
def mk_goal(bool1, bool2, bool3)
|
1286
|
+
Z3::VeryLowLevel.Z3_mk_goal(_ctx_pointer, bool1, bool2, bool3)
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
def mk_gt(ast1, ast2)
|
1290
|
+
Z3::VeryLowLevel.Z3_mk_gt(_ctx_pointer, ast1._ast, ast2._ast)
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
def mk_iff(ast1, ast2)
|
1294
|
+
Z3::VeryLowLevel.Z3_mk_iff(_ctx_pointer, ast1._ast, ast2._ast)
|
1295
|
+
end
|
1296
|
+
|
1297
|
+
def mk_implies(ast1, ast2)
|
1298
|
+
Z3::VeryLowLevel.Z3_mk_implies(_ctx_pointer, ast1._ast, ast2._ast)
|
1299
|
+
end
|
1300
|
+
|
1301
|
+
def mk_int(num, sort)
|
1302
|
+
Z3::VeryLowLevel.Z3_mk_int(_ctx_pointer, num, sort._sort)
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
def mk_int2bv(num, ast)
|
1306
|
+
Z3::VeryLowLevel.Z3_mk_int2bv(_ctx_pointer, num, ast._ast)
|
1307
|
+
end
|
1308
|
+
|
1309
|
+
def mk_int2real(ast)
|
1310
|
+
Z3::VeryLowLevel.Z3_mk_int2real(_ctx_pointer, ast._ast)
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
def mk_int64(num, sort)
|
1314
|
+
Z3::VeryLowLevel.Z3_mk_int64(_ctx_pointer, num, sort._sort)
|
1315
|
+
end
|
1316
|
+
|
1317
|
+
def mk_int_sort
|
1318
|
+
Z3::VeryLowLevel.Z3_mk_int_sort(_ctx_pointer)
|
1319
|
+
end
|
1320
|
+
|
1321
|
+
def mk_int_symbol(num)
|
1322
|
+
Z3::VeryLowLevel.Z3_mk_int_symbol(_ctx_pointer, num)
|
1323
|
+
end
|
1324
|
+
|
1325
|
+
def mk_interpolant(ast)
|
1326
|
+
Z3::VeryLowLevel.Z3_mk_interpolant(_ctx_pointer, ast._ast)
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
def mk_interpolation_context(config)
|
1330
|
+
Z3::VeryLowLevel.Z3_mk_interpolation_context(config._config)
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
def mk_is_int(ast)
|
1334
|
+
Z3::VeryLowLevel.Z3_mk_is_int(_ctx_pointer, ast._ast)
|
1335
|
+
end
|
1336
|
+
|
1337
|
+
def mk_ite(ast1, ast2, ast3)
|
1338
|
+
Z3::VeryLowLevel.Z3_mk_ite(_ctx_pointer, ast1._ast, ast2._ast, ast3._ast)
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
def mk_le(ast1, ast2)
|
1342
|
+
Z3::VeryLowLevel.Z3_mk_le(_ctx_pointer, ast1._ast, ast2._ast)
|
1343
|
+
end
|
1344
|
+
|
1345
|
+
def mk_lt(ast1, ast2)
|
1346
|
+
Z3::VeryLowLevel.Z3_mk_lt(_ctx_pointer, ast1._ast, ast2._ast)
|
1347
|
+
end
|
1348
|
+
|
1349
|
+
def mk_mod(ast1, ast2)
|
1350
|
+
Z3::VeryLowLevel.Z3_mk_mod(_ctx_pointer, ast1._ast, ast2._ast)
|
1351
|
+
end
|
1352
|
+
|
1353
|
+
def mk_not(ast)
|
1354
|
+
Z3::VeryLowLevel.Z3_mk_not(_ctx_pointer, ast._ast)
|
1355
|
+
end
|
1356
|
+
|
1357
|
+
def mk_numeral(str, sort)
|
1358
|
+
Z3::VeryLowLevel.Z3_mk_numeral(_ctx_pointer, str, sort._sort)
|
1359
|
+
end
|
1360
|
+
|
1361
|
+
def mk_optimize
|
1362
|
+
Z3::VeryLowLevel.Z3_mk_optimize(_ctx_pointer)
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
def mk_params
|
1366
|
+
Z3::VeryLowLevel.Z3_mk_params(_ctx_pointer)
|
1367
|
+
end
|
1368
|
+
|
1369
|
+
def mk_power(ast1, ast2)
|
1370
|
+
Z3::VeryLowLevel.Z3_mk_power(_ctx_pointer, ast1._ast, ast2._ast)
|
1371
|
+
end
|
1372
|
+
|
1373
|
+
def mk_probe(str)
|
1374
|
+
Z3::VeryLowLevel.Z3_mk_probe(_ctx_pointer, str)
|
1375
|
+
end
|
1376
|
+
|
1377
|
+
def mk_real(num1, num2)
|
1378
|
+
Z3::VeryLowLevel.Z3_mk_real(_ctx_pointer, num1, num2)
|
1379
|
+
end
|
1380
|
+
|
1381
|
+
def mk_real2int(ast)
|
1382
|
+
Z3::VeryLowLevel.Z3_mk_real2int(_ctx_pointer, ast._ast)
|
1383
|
+
end
|
1384
|
+
|
1385
|
+
def mk_real_sort
|
1386
|
+
Z3::VeryLowLevel.Z3_mk_real_sort(_ctx_pointer)
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
def mk_rem(ast1, ast2)
|
1390
|
+
Z3::VeryLowLevel.Z3_mk_rem(_ctx_pointer, ast1._ast, ast2._ast)
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
def mk_repeat(num, ast)
|
1394
|
+
Z3::VeryLowLevel.Z3_mk_repeat(_ctx_pointer, num, ast._ast)
|
1395
|
+
end
|
1396
|
+
|
1397
|
+
def mk_rotate_left(num, ast)
|
1398
|
+
Z3::VeryLowLevel.Z3_mk_rotate_left(_ctx_pointer, num, ast._ast)
|
1399
|
+
end
|
1400
|
+
|
1401
|
+
def mk_rotate_right(num, ast)
|
1402
|
+
Z3::VeryLowLevel.Z3_mk_rotate_right(_ctx_pointer, num, ast._ast)
|
1403
|
+
end
|
1404
|
+
|
1405
|
+
def mk_select(ast1, ast2)
|
1406
|
+
Z3::VeryLowLevel.Z3_mk_select(_ctx_pointer, ast1._ast, ast2._ast)
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
def mk_set_add(ast1, ast2)
|
1410
|
+
Z3::VeryLowLevel.Z3_mk_set_add(_ctx_pointer, ast1._ast, ast2._ast)
|
1411
|
+
end
|
1412
|
+
|
1413
|
+
def mk_set_complement(ast)
|
1414
|
+
Z3::VeryLowLevel.Z3_mk_set_complement(_ctx_pointer, ast._ast)
|
1415
|
+
end
|
1416
|
+
|
1417
|
+
def mk_set_del(ast1, ast2)
|
1418
|
+
Z3::VeryLowLevel.Z3_mk_set_del(_ctx_pointer, ast1._ast, ast2._ast)
|
1419
|
+
end
|
1420
|
+
|
1421
|
+
def mk_set_difference(ast1, ast2)
|
1422
|
+
Z3::VeryLowLevel.Z3_mk_set_difference(_ctx_pointer, ast1._ast, ast2._ast)
|
1423
|
+
end
|
1424
|
+
|
1425
|
+
def mk_set_member(ast1, ast2)
|
1426
|
+
Z3::VeryLowLevel.Z3_mk_set_member(_ctx_pointer, ast1._ast, ast2._ast)
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
def mk_set_sort(sort)
|
1430
|
+
Z3::VeryLowLevel.Z3_mk_set_sort(_ctx_pointer, sort._sort)
|
1431
|
+
end
|
1432
|
+
|
1433
|
+
def mk_set_subset(ast1, ast2)
|
1434
|
+
Z3::VeryLowLevel.Z3_mk_set_subset(_ctx_pointer, ast1._ast, ast2._ast)
|
1435
|
+
end
|
1436
|
+
|
1437
|
+
def mk_sign_ext(num, ast)
|
1438
|
+
Z3::VeryLowLevel.Z3_mk_sign_ext(_ctx_pointer, num, ast._ast)
|
1439
|
+
end
|
1440
|
+
|
1441
|
+
def mk_simple_solver
|
1442
|
+
Z3::VeryLowLevel.Z3_mk_simple_solver(_ctx_pointer)
|
1443
|
+
end
|
1444
|
+
|
1445
|
+
def mk_solver
|
1446
|
+
Z3::VeryLowLevel.Z3_mk_solver(_ctx_pointer)
|
1447
|
+
end
|
1448
|
+
|
1449
|
+
def mk_solver_for_logic(sym)
|
1450
|
+
Z3::VeryLowLevel.Z3_mk_solver_for_logic(_ctx_pointer, sym)
|
1451
|
+
end
|
1452
|
+
|
1453
|
+
def mk_solver_from_tactic(tactic)
|
1454
|
+
Z3::VeryLowLevel.Z3_mk_solver_from_tactic(_ctx_pointer, tactic._tactic)
|
1455
|
+
end
|
1456
|
+
|
1457
|
+
def mk_store(ast1, ast2, ast3)
|
1458
|
+
Z3::VeryLowLevel.Z3_mk_store(_ctx_pointer, ast1._ast, ast2._ast, ast3._ast)
|
1459
|
+
end
|
1460
|
+
|
1461
|
+
def mk_string_symbol(str)
|
1462
|
+
Z3::VeryLowLevel.Z3_mk_string_symbol(_ctx_pointer, str)
|
1463
|
+
end
|
1464
|
+
|
1465
|
+
def mk_tactic(str)
|
1466
|
+
Z3::VeryLowLevel.Z3_mk_tactic(_ctx_pointer, str)
|
1467
|
+
end
|
1468
|
+
|
1469
|
+
def mk_true
|
1470
|
+
Z3::VeryLowLevel.Z3_mk_true(_ctx_pointer)
|
1471
|
+
end
|
1472
|
+
|
1473
|
+
def mk_unary_minus(ast)
|
1474
|
+
Z3::VeryLowLevel.Z3_mk_unary_minus(_ctx_pointer, ast._ast)
|
1475
|
+
end
|
1476
|
+
|
1477
|
+
def mk_uninterpreted_sort(sym)
|
1478
|
+
Z3::VeryLowLevel.Z3_mk_uninterpreted_sort(_ctx_pointer, sym)
|
1479
|
+
end
|
1480
|
+
|
1481
|
+
def mk_unsigned_int(num, sort)
|
1482
|
+
Z3::VeryLowLevel.Z3_mk_unsigned_int(_ctx_pointer, num, sort._sort)
|
1483
|
+
end
|
1484
|
+
|
1485
|
+
def mk_unsigned_int64(num, sort)
|
1486
|
+
Z3::VeryLowLevel.Z3_mk_unsigned_int64(_ctx_pointer, num, sort._sort)
|
1487
|
+
end
|
1488
|
+
|
1489
|
+
def mk_xor(ast1, ast2)
|
1490
|
+
Z3::VeryLowLevel.Z3_mk_xor(_ctx_pointer, ast1._ast, ast2._ast)
|
1491
|
+
end
|
1492
|
+
|
1493
|
+
def mk_zero_ext(num, ast)
|
1494
|
+
Z3::VeryLowLevel.Z3_mk_zero_ext(_ctx_pointer, num, ast._ast)
|
1495
|
+
end
|
1496
|
+
|
1497
|
+
def model_dec_ref(model)
|
1498
|
+
Z3::VeryLowLevel.Z3_model_dec_ref(_ctx_pointer, model._model)
|
1499
|
+
end
|
1500
|
+
|
1501
|
+
def model_get_const_decl(model, num)
|
1502
|
+
Z3::VeryLowLevel.Z3_model_get_const_decl(_ctx_pointer, model._model, num)
|
1503
|
+
end
|
1504
|
+
|
1505
|
+
def model_get_const_interp(model, func_decl)
|
1506
|
+
Z3::VeryLowLevel.Z3_model_get_const_interp(_ctx_pointer, model._model, func_decl._func_decl)
|
1507
|
+
end
|
1508
|
+
|
1509
|
+
def model_get_func_decl(model, num)
|
1510
|
+
Z3::VeryLowLevel.Z3_model_get_func_decl(_ctx_pointer, model._model, num)
|
1511
|
+
end
|
1512
|
+
|
1513
|
+
def model_get_func_interp(model, func_decl)
|
1514
|
+
Z3::VeryLowLevel.Z3_model_get_func_interp(_ctx_pointer, model._model, func_decl._func_decl)
|
1515
|
+
end
|
1516
|
+
|
1517
|
+
def model_get_num_consts(model)
|
1518
|
+
Z3::VeryLowLevel.Z3_model_get_num_consts(_ctx_pointer, model._model)
|
1519
|
+
end
|
1520
|
+
|
1521
|
+
def model_get_num_funcs(model)
|
1522
|
+
Z3::VeryLowLevel.Z3_model_get_num_funcs(_ctx_pointer, model._model)
|
1523
|
+
end
|
1524
|
+
|
1525
|
+
def model_get_num_sorts(model)
|
1526
|
+
Z3::VeryLowLevel.Z3_model_get_num_sorts(_ctx_pointer, model._model)
|
1527
|
+
end
|
1528
|
+
|
1529
|
+
def model_get_sort(model, num)
|
1530
|
+
Z3::VeryLowLevel.Z3_model_get_sort(_ctx_pointer, model._model, num)
|
1531
|
+
end
|
1532
|
+
|
1533
|
+
def model_get_sort_universe(model, sort)
|
1534
|
+
Z3::VeryLowLevel.Z3_model_get_sort_universe(_ctx_pointer, model._model, sort._sort)
|
1535
|
+
end
|
1536
|
+
|
1537
|
+
def model_has_interp(model, func_decl)
|
1538
|
+
Z3::VeryLowLevel.Z3_model_has_interp(_ctx_pointer, model._model, func_decl._func_decl)
|
1539
|
+
end
|
1540
|
+
|
1541
|
+
def model_inc_ref(model)
|
1542
|
+
Z3::VeryLowLevel.Z3_model_inc_ref(_ctx_pointer, model._model)
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
def model_to_string(model)
|
1546
|
+
Z3::VeryLowLevel.Z3_model_to_string(_ctx_pointer, model._model)
|
1547
|
+
end
|
1548
|
+
|
1549
|
+
def optimize_assert(optimize, ast)
|
1550
|
+
Z3::VeryLowLevel.Z3_optimize_assert(_ctx_pointer, optimize._optimize, ast._ast)
|
1551
|
+
end
|
1552
|
+
|
1553
|
+
def optimize_assert_soft(optimize, ast, str, sym)
|
1554
|
+
Z3::VeryLowLevel.Z3_optimize_assert_soft(_ctx_pointer, optimize._optimize, ast._ast, str, sym)
|
1555
|
+
end
|
1556
|
+
|
1557
|
+
def optimize_check(optimize)
|
1558
|
+
Z3::VeryLowLevel.Z3_optimize_check(_ctx_pointer, optimize._optimize)
|
1559
|
+
end
|
1560
|
+
|
1561
|
+
def optimize_dec_ref(optimize)
|
1562
|
+
Z3::VeryLowLevel.Z3_optimize_dec_ref(_ctx_pointer, optimize._optimize)
|
1563
|
+
end
|
1564
|
+
|
1565
|
+
def optimize_get_help(optimize)
|
1566
|
+
Z3::VeryLowLevel.Z3_optimize_get_help(_ctx_pointer, optimize._optimize)
|
1567
|
+
end
|
1568
|
+
|
1569
|
+
def optimize_get_lower(optimize, num)
|
1570
|
+
Z3::VeryLowLevel.Z3_optimize_get_lower(_ctx_pointer, optimize._optimize, num)
|
1571
|
+
end
|
1572
|
+
|
1573
|
+
def optimize_get_model(optimize)
|
1574
|
+
Z3::VeryLowLevel.Z3_optimize_get_model(_ctx_pointer, optimize._optimize)
|
1575
|
+
end
|
1576
|
+
|
1577
|
+
def optimize_get_param_descrs(optimize)
|
1578
|
+
Z3::VeryLowLevel.Z3_optimize_get_param_descrs(_ctx_pointer, optimize._optimize)
|
1579
|
+
end
|
1580
|
+
|
1581
|
+
def optimize_get_reason_unknown(optimize)
|
1582
|
+
Z3::VeryLowLevel.Z3_optimize_get_reason_unknown(_ctx_pointer, optimize._optimize)
|
1583
|
+
end
|
1584
|
+
|
1585
|
+
def optimize_get_statistics(optimize)
|
1586
|
+
Z3::VeryLowLevel.Z3_optimize_get_statistics(_ctx_pointer, optimize._optimize)
|
1587
|
+
end
|
1588
|
+
|
1589
|
+
def optimize_get_upper(optimize, num)
|
1590
|
+
Z3::VeryLowLevel.Z3_optimize_get_upper(_ctx_pointer, optimize._optimize, num)
|
1591
|
+
end
|
1592
|
+
|
1593
|
+
def optimize_inc_ref(optimize)
|
1594
|
+
Z3::VeryLowLevel.Z3_optimize_inc_ref(_ctx_pointer, optimize._optimize)
|
1595
|
+
end
|
1596
|
+
|
1597
|
+
def optimize_maximize(optimize, ast)
|
1598
|
+
Z3::VeryLowLevel.Z3_optimize_maximize(_ctx_pointer, optimize._optimize, ast._ast)
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
def optimize_minimize(optimize, ast)
|
1602
|
+
Z3::VeryLowLevel.Z3_optimize_minimize(_ctx_pointer, optimize._optimize, ast._ast)
|
1603
|
+
end
|
1604
|
+
|
1605
|
+
def optimize_pop(optimize)
|
1606
|
+
Z3::VeryLowLevel.Z3_optimize_pop(_ctx_pointer, optimize._optimize)
|
1607
|
+
end
|
1608
|
+
|
1609
|
+
def optimize_push(optimize)
|
1610
|
+
Z3::VeryLowLevel.Z3_optimize_push(_ctx_pointer, optimize._optimize)
|
1611
|
+
end
|
1612
|
+
|
1613
|
+
def optimize_set_params(optimize, params)
|
1614
|
+
Z3::VeryLowLevel.Z3_optimize_set_params(_ctx_pointer, optimize._optimize, params._params)
|
1615
|
+
end
|
1616
|
+
|
1617
|
+
def optimize_to_string(optimize)
|
1618
|
+
Z3::VeryLowLevel.Z3_optimize_to_string(_ctx_pointer, optimize._optimize)
|
1619
|
+
end
|
1620
|
+
|
1621
|
+
def param_descrs_dec_ref(param_descrs)
|
1622
|
+
Z3::VeryLowLevel.Z3_param_descrs_dec_ref(_ctx_pointer, param_descrs._param_descrs)
|
1623
|
+
end
|
1624
|
+
|
1625
|
+
def param_descrs_get_kind(param_descrs, sym)
|
1626
|
+
Z3::VeryLowLevel.Z3_param_descrs_get_kind(_ctx_pointer, param_descrs._param_descrs, sym)
|
1627
|
+
end
|
1628
|
+
|
1629
|
+
def param_descrs_get_name(param_descrs, num)
|
1630
|
+
Z3::VeryLowLevel.Z3_param_descrs_get_name(_ctx_pointer, param_descrs._param_descrs, num)
|
1631
|
+
end
|
1632
|
+
|
1633
|
+
def param_descrs_inc_ref(param_descrs)
|
1634
|
+
Z3::VeryLowLevel.Z3_param_descrs_inc_ref(_ctx_pointer, param_descrs._param_descrs)
|
1635
|
+
end
|
1636
|
+
|
1637
|
+
def param_descrs_size(param_descrs)
|
1638
|
+
Z3::VeryLowLevel.Z3_param_descrs_size(_ctx_pointer, param_descrs._param_descrs)
|
1639
|
+
end
|
1640
|
+
|
1641
|
+
def param_descrs_to_string(param_descrs)
|
1642
|
+
Z3::VeryLowLevel.Z3_param_descrs_to_string(_ctx_pointer, param_descrs._param_descrs)
|
1643
|
+
end
|
1644
|
+
|
1645
|
+
def params_dec_ref(params)
|
1646
|
+
Z3::VeryLowLevel.Z3_params_dec_ref(_ctx_pointer, params._params)
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
def params_inc_ref(params)
|
1650
|
+
Z3::VeryLowLevel.Z3_params_inc_ref(_ctx_pointer, params._params)
|
1651
|
+
end
|
1652
|
+
|
1653
|
+
def params_set_bool(params, sym, bool)
|
1654
|
+
Z3::VeryLowLevel.Z3_params_set_bool(_ctx_pointer, params._params, sym, bool)
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
def params_set_double(params, sym, double)
|
1658
|
+
Z3::VeryLowLevel.Z3_params_set_double(_ctx_pointer, params._params, sym, double)
|
1659
|
+
end
|
1660
|
+
|
1661
|
+
def params_set_symbol(params, sym1, sym2)
|
1662
|
+
Z3::VeryLowLevel.Z3_params_set_symbol(_ctx_pointer, params._params, sym1, sym2)
|
1663
|
+
end
|
1664
|
+
|
1665
|
+
def params_set_uint(params, sym, num)
|
1666
|
+
Z3::VeryLowLevel.Z3_params_set_uint(_ctx_pointer, params._params, sym, num)
|
1667
|
+
end
|
1668
|
+
|
1669
|
+
def params_to_string(params)
|
1670
|
+
Z3::VeryLowLevel.Z3_params_to_string(_ctx_pointer, params._params)
|
1671
|
+
end
|
1672
|
+
|
1673
|
+
def params_validate(params, param_descrs)
|
1674
|
+
Z3::VeryLowLevel.Z3_params_validate(_ctx_pointer, params._params, param_descrs._param_descrs)
|
1675
|
+
end
|
1676
|
+
|
1677
|
+
def pattern_to_ast(pattern)
|
1678
|
+
Z3::VeryLowLevel.Z3_pattern_to_ast(_ctx_pointer, pattern._pattern)
|
1679
|
+
end
|
1680
|
+
|
1681
|
+
def pattern_to_string(pattern)
|
1682
|
+
Z3::VeryLowLevel.Z3_pattern_to_string(_ctx_pointer, pattern._pattern)
|
1683
|
+
end
|
1684
|
+
|
1685
|
+
def polynomial_subresultants(ast1, ast2, ast3)
|
1686
|
+
Z3::VeryLowLevel.Z3_polynomial_subresultants(_ctx_pointer, ast1._ast, ast2._ast, ast3._ast)
|
1687
|
+
end
|
1688
|
+
|
1689
|
+
def probe_and(probe1, probe2)
|
1690
|
+
Z3::VeryLowLevel.Z3_probe_and(_ctx_pointer, probe1._probe, probe2._probe)
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
def probe_apply(probe, goal)
|
1694
|
+
Z3::VeryLowLevel.Z3_probe_apply(_ctx_pointer, probe._probe, goal._goal)
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
def probe_const(double)
|
1698
|
+
Z3::VeryLowLevel.Z3_probe_const(_ctx_pointer, double)
|
1699
|
+
end
|
1700
|
+
|
1701
|
+
def probe_dec_ref(probe)
|
1702
|
+
Z3::VeryLowLevel.Z3_probe_dec_ref(_ctx_pointer, probe._probe)
|
1703
|
+
end
|
1704
|
+
|
1705
|
+
def probe_eq(probe1, probe2)
|
1706
|
+
Z3::VeryLowLevel.Z3_probe_eq(_ctx_pointer, probe1._probe, probe2._probe)
|
1707
|
+
end
|
1708
|
+
|
1709
|
+
def probe_ge(probe1, probe2)
|
1710
|
+
Z3::VeryLowLevel.Z3_probe_ge(_ctx_pointer, probe1._probe, probe2._probe)
|
1711
|
+
end
|
1712
|
+
|
1713
|
+
def probe_get_descr(str)
|
1714
|
+
Z3::VeryLowLevel.Z3_probe_get_descr(_ctx_pointer, str)
|
1715
|
+
end
|
1716
|
+
|
1717
|
+
def probe_gt(probe1, probe2)
|
1718
|
+
Z3::VeryLowLevel.Z3_probe_gt(_ctx_pointer, probe1._probe, probe2._probe)
|
1719
|
+
end
|
1720
|
+
|
1721
|
+
def probe_inc_ref(probe)
|
1722
|
+
Z3::VeryLowLevel.Z3_probe_inc_ref(_ctx_pointer, probe._probe)
|
1723
|
+
end
|
1724
|
+
|
1725
|
+
def probe_le(probe1, probe2)
|
1726
|
+
Z3::VeryLowLevel.Z3_probe_le(_ctx_pointer, probe1._probe, probe2._probe)
|
1727
|
+
end
|
1728
|
+
|
1729
|
+
def probe_lt(probe1, probe2)
|
1730
|
+
Z3::VeryLowLevel.Z3_probe_lt(_ctx_pointer, probe1._probe, probe2._probe)
|
1731
|
+
end
|
1732
|
+
|
1733
|
+
def probe_not(probe)
|
1734
|
+
Z3::VeryLowLevel.Z3_probe_not(_ctx_pointer, probe._probe)
|
1735
|
+
end
|
1736
|
+
|
1737
|
+
def probe_or(probe1, probe2)
|
1738
|
+
Z3::VeryLowLevel.Z3_probe_or(_ctx_pointer, probe1._probe, probe2._probe)
|
1739
|
+
end
|
1740
|
+
|
1741
|
+
def rcf_add(num1, num2)
|
1742
|
+
Z3::VeryLowLevel.Z3_rcf_add(_ctx_pointer, num1._rcf_num, num2._rcf_num)
|
1743
|
+
end
|
1744
|
+
|
1745
|
+
def rcf_del(num)
|
1746
|
+
Z3::VeryLowLevel.Z3_rcf_del(_ctx_pointer, num._rcf_num)
|
1747
|
+
end
|
1748
|
+
|
1749
|
+
def rcf_div(num1, num2)
|
1750
|
+
Z3::VeryLowLevel.Z3_rcf_div(_ctx_pointer, num1._rcf_num, num2._rcf_num)
|
1751
|
+
end
|
1752
|
+
|
1753
|
+
def rcf_eq(num1, num2)
|
1754
|
+
Z3::VeryLowLevel.Z3_rcf_eq(_ctx_pointer, num1._rcf_num, num2._rcf_num)
|
1755
|
+
end
|
1756
|
+
|
1757
|
+
def rcf_ge(num1, num2)
|
1758
|
+
Z3::VeryLowLevel.Z3_rcf_ge(_ctx_pointer, num1._rcf_num, num2._rcf_num)
|
1759
|
+
end
|
1760
|
+
|
1761
|
+
def rcf_gt(num1, num2)
|
1762
|
+
Z3::VeryLowLevel.Z3_rcf_gt(_ctx_pointer, num1._rcf_num, num2._rcf_num)
|
1763
|
+
end
|
1764
|
+
|
1765
|
+
def rcf_inv(num)
|
1766
|
+
Z3::VeryLowLevel.Z3_rcf_inv(_ctx_pointer, num._rcf_num)
|
1767
|
+
end
|
1768
|
+
|
1769
|
+
def rcf_le(num1, num2)
|
1770
|
+
Z3::VeryLowLevel.Z3_rcf_le(_ctx_pointer, num1._rcf_num, num2._rcf_num)
|
1771
|
+
end
|
1772
|
+
|
1773
|
+
def rcf_lt(num1, num2)
|
1774
|
+
Z3::VeryLowLevel.Z3_rcf_lt(_ctx_pointer, num1._rcf_num, num2._rcf_num)
|
1775
|
+
end
|
1776
|
+
|
1777
|
+
def rcf_mk_e
|
1778
|
+
Z3::VeryLowLevel.Z3_rcf_mk_e(_ctx_pointer)
|
1779
|
+
end
|
1780
|
+
|
1781
|
+
def rcf_mk_infinitesimal
|
1782
|
+
Z3::VeryLowLevel.Z3_rcf_mk_infinitesimal(_ctx_pointer)
|
1783
|
+
end
|
1784
|
+
|
1785
|
+
def rcf_mk_pi
|
1786
|
+
Z3::VeryLowLevel.Z3_rcf_mk_pi(_ctx_pointer)
|
1787
|
+
end
|
1788
|
+
|
1789
|
+
def rcf_mk_rational(str)
|
1790
|
+
Z3::VeryLowLevel.Z3_rcf_mk_rational(_ctx_pointer, str)
|
1791
|
+
end
|
1792
|
+
|
1793
|
+
def rcf_mk_small_int(num)
|
1794
|
+
Z3::VeryLowLevel.Z3_rcf_mk_small_int(_ctx_pointer, num)
|
1795
|
+
end
|
1796
|
+
|
1797
|
+
def rcf_mul(num1, num2)
|
1798
|
+
Z3::VeryLowLevel.Z3_rcf_mul(_ctx_pointer, num1._rcf_num, num2._rcf_num)
|
1799
|
+
end
|
1800
|
+
|
1801
|
+
def rcf_neg(num)
|
1802
|
+
Z3::VeryLowLevel.Z3_rcf_neg(_ctx_pointer, num._rcf_num)
|
1803
|
+
end
|
1804
|
+
|
1805
|
+
def rcf_neq(num1, num2)
|
1806
|
+
Z3::VeryLowLevel.Z3_rcf_neq(_ctx_pointer, num1._rcf_num, num2._rcf_num)
|
1807
|
+
end
|
1808
|
+
|
1809
|
+
def rcf_num_to_decimal_string(num1, num2)
|
1810
|
+
Z3::VeryLowLevel.Z3_rcf_num_to_decimal_string(_ctx_pointer, num1._rcf_num, num2)
|
1811
|
+
end
|
1812
|
+
|
1813
|
+
def rcf_num_to_string(num, bool1, bool2)
|
1814
|
+
Z3::VeryLowLevel.Z3_rcf_num_to_string(_ctx_pointer, num._rcf_num, bool1, bool2)
|
1815
|
+
end
|
1816
|
+
|
1817
|
+
def rcf_power(num1, num2)
|
1818
|
+
Z3::VeryLowLevel.Z3_rcf_power(_ctx_pointer, num1._rcf_num, num2)
|
1819
|
+
end
|
1820
|
+
|
1821
|
+
def rcf_sub(num1, num2)
|
1822
|
+
Z3::VeryLowLevel.Z3_rcf_sub(_ctx_pointer, num1._rcf_num, num2._rcf_num)
|
1823
|
+
end
|
1824
|
+
|
1825
|
+
def reset_memory
|
1826
|
+
Z3::VeryLowLevel.Z3_reset_memory()
|
1827
|
+
end
|
1828
|
+
|
1829
|
+
def set_param_value(config, str1, str2)
|
1830
|
+
Z3::VeryLowLevel.Z3_set_param_value(config._config, str1, str2)
|
1831
|
+
end
|
1832
|
+
|
1833
|
+
def simplify(ast)
|
1834
|
+
Z3::VeryLowLevel.Z3_simplify(_ctx_pointer, ast._ast)
|
1835
|
+
end
|
1836
|
+
|
1837
|
+
def simplify_ex(ast, params)
|
1838
|
+
Z3::VeryLowLevel.Z3_simplify_ex(_ctx_pointer, ast._ast, params._params)
|
1839
|
+
end
|
1840
|
+
|
1841
|
+
def simplify_get_help
|
1842
|
+
Z3::VeryLowLevel.Z3_simplify_get_help(_ctx_pointer)
|
1843
|
+
end
|
1844
|
+
|
1845
|
+
def simplify_get_param_descrs
|
1846
|
+
Z3::VeryLowLevel.Z3_simplify_get_param_descrs(_ctx_pointer)
|
1847
|
+
end
|
1848
|
+
|
1849
|
+
def solver_assert(solver, ast)
|
1850
|
+
Z3::VeryLowLevel.Z3_solver_assert(_ctx_pointer, solver._solver, ast._ast)
|
1851
|
+
end
|
1852
|
+
|
1853
|
+
def solver_assert_and_track(solver, ast1, ast2)
|
1854
|
+
Z3::VeryLowLevel.Z3_solver_assert_and_track(_ctx_pointer, solver._solver, ast1._ast, ast2._ast)
|
1855
|
+
end
|
1856
|
+
|
1857
|
+
def solver_check(solver)
|
1858
|
+
Z3::VeryLowLevel.Z3_solver_check(_ctx_pointer, solver._solver)
|
1859
|
+
end
|
1860
|
+
|
1861
|
+
def solver_dec_ref(solver)
|
1862
|
+
Z3::VeryLowLevel.Z3_solver_dec_ref(_ctx_pointer, solver._solver)
|
1863
|
+
end
|
1864
|
+
|
1865
|
+
def solver_get_assertions(solver)
|
1866
|
+
Z3::VeryLowLevel.Z3_solver_get_assertions(_ctx_pointer, solver._solver)
|
1867
|
+
end
|
1868
|
+
|
1869
|
+
def solver_get_help(solver)
|
1870
|
+
Z3::VeryLowLevel.Z3_solver_get_help(_ctx_pointer, solver._solver)
|
1871
|
+
end
|
1872
|
+
|
1873
|
+
def solver_get_model(solver)
|
1874
|
+
Z3::VeryLowLevel.Z3_solver_get_model(_ctx_pointer, solver._solver)
|
1875
|
+
end
|
1876
|
+
|
1877
|
+
def solver_get_num_scopes(solver)
|
1878
|
+
Z3::VeryLowLevel.Z3_solver_get_num_scopes(_ctx_pointer, solver._solver)
|
1879
|
+
end
|
1880
|
+
|
1881
|
+
def solver_get_param_descrs(solver)
|
1882
|
+
Z3::VeryLowLevel.Z3_solver_get_param_descrs(_ctx_pointer, solver._solver)
|
1883
|
+
end
|
1884
|
+
|
1885
|
+
def solver_get_proof(solver)
|
1886
|
+
Z3::VeryLowLevel.Z3_solver_get_proof(_ctx_pointer, solver._solver)
|
1887
|
+
end
|
1888
|
+
|
1889
|
+
def solver_get_reason_unknown(solver)
|
1890
|
+
Z3::VeryLowLevel.Z3_solver_get_reason_unknown(_ctx_pointer, solver._solver)
|
1891
|
+
end
|
1892
|
+
|
1893
|
+
def solver_get_statistics(solver)
|
1894
|
+
Z3::VeryLowLevel.Z3_solver_get_statistics(_ctx_pointer, solver._solver)
|
1895
|
+
end
|
1896
|
+
|
1897
|
+
def solver_get_unsat_core(solver)
|
1898
|
+
Z3::VeryLowLevel.Z3_solver_get_unsat_core(_ctx_pointer, solver._solver)
|
1899
|
+
end
|
1900
|
+
|
1901
|
+
def solver_inc_ref(solver)
|
1902
|
+
Z3::VeryLowLevel.Z3_solver_inc_ref(_ctx_pointer, solver._solver)
|
1903
|
+
end
|
1904
|
+
|
1905
|
+
def solver_pop(solver, num)
|
1906
|
+
Z3::VeryLowLevel.Z3_solver_pop(_ctx_pointer, solver._solver, num)
|
1907
|
+
end
|
1908
|
+
|
1909
|
+
def solver_push(solver)
|
1910
|
+
Z3::VeryLowLevel.Z3_solver_push(_ctx_pointer, solver._solver)
|
1911
|
+
end
|
1912
|
+
|
1913
|
+
def solver_reset(solver)
|
1914
|
+
Z3::VeryLowLevel.Z3_solver_reset(_ctx_pointer, solver._solver)
|
1915
|
+
end
|
1916
|
+
|
1917
|
+
def solver_set_params(solver, params)
|
1918
|
+
Z3::VeryLowLevel.Z3_solver_set_params(_ctx_pointer, solver._solver, params._params)
|
1919
|
+
end
|
1920
|
+
|
1921
|
+
def solver_to_string(solver)
|
1922
|
+
Z3::VeryLowLevel.Z3_solver_to_string(_ctx_pointer, solver._solver)
|
1923
|
+
end
|
1924
|
+
|
1925
|
+
def sort_to_ast(sort)
|
1926
|
+
Z3::VeryLowLevel.Z3_sort_to_ast(_ctx_pointer, sort._sort)
|
1927
|
+
end
|
1928
|
+
|
1929
|
+
def sort_to_string(sort)
|
1930
|
+
Z3::VeryLowLevel.Z3_sort_to_string(_ctx_pointer, sort._sort)
|
1931
|
+
end
|
1932
|
+
|
1933
|
+
def stats_dec_ref(stats)
|
1934
|
+
Z3::VeryLowLevel.Z3_stats_dec_ref(_ctx_pointer, stats._stats)
|
1935
|
+
end
|
1936
|
+
|
1937
|
+
def stats_get_double_value(stats, num)
|
1938
|
+
Z3::VeryLowLevel.Z3_stats_get_double_value(_ctx_pointer, stats._stats, num)
|
1939
|
+
end
|
1940
|
+
|
1941
|
+
def stats_get_key(stats, num)
|
1942
|
+
Z3::VeryLowLevel.Z3_stats_get_key(_ctx_pointer, stats._stats, num)
|
1943
|
+
end
|
1944
|
+
|
1945
|
+
def stats_get_uint_value(stats, num)
|
1946
|
+
Z3::VeryLowLevel.Z3_stats_get_uint_value(_ctx_pointer, stats._stats, num)
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
def stats_inc_ref(stats)
|
1950
|
+
Z3::VeryLowLevel.Z3_stats_inc_ref(_ctx_pointer, stats._stats)
|
1951
|
+
end
|
1952
|
+
|
1953
|
+
def stats_is_double(stats, num)
|
1954
|
+
Z3::VeryLowLevel.Z3_stats_is_double(_ctx_pointer, stats._stats, num)
|
1955
|
+
end
|
1956
|
+
|
1957
|
+
def stats_is_uint(stats, num)
|
1958
|
+
Z3::VeryLowLevel.Z3_stats_is_uint(_ctx_pointer, stats._stats, num)
|
1959
|
+
end
|
1960
|
+
|
1961
|
+
def stats_size(stats)
|
1962
|
+
Z3::VeryLowLevel.Z3_stats_size(_ctx_pointer, stats._stats)
|
1963
|
+
end
|
1964
|
+
|
1965
|
+
def stats_to_string(stats)
|
1966
|
+
Z3::VeryLowLevel.Z3_stats_to_string(_ctx_pointer, stats._stats)
|
1967
|
+
end
|
1968
|
+
|
1969
|
+
def tactic_and_then(tactic1, tactic2)
|
1970
|
+
Z3::VeryLowLevel.Z3_tactic_and_then(_ctx_pointer, tactic1._tactic, tactic2._tactic)
|
1971
|
+
end
|
1972
|
+
|
1973
|
+
def tactic_apply(tactic, goal)
|
1974
|
+
Z3::VeryLowLevel.Z3_tactic_apply(_ctx_pointer, tactic._tactic, goal._goal)
|
1975
|
+
end
|
1976
|
+
|
1977
|
+
def tactic_apply_ex(tactic, goal, params)
|
1978
|
+
Z3::VeryLowLevel.Z3_tactic_apply_ex(_ctx_pointer, tactic._tactic, goal._goal, params._params)
|
1979
|
+
end
|
1980
|
+
|
1981
|
+
def tactic_cond(probe, tactic1, tactic2)
|
1982
|
+
Z3::VeryLowLevel.Z3_tactic_cond(_ctx_pointer, probe._probe, tactic1._tactic, tactic2._tactic)
|
1983
|
+
end
|
1984
|
+
|
1985
|
+
def tactic_dec_ref(tactic)
|
1986
|
+
Z3::VeryLowLevel.Z3_tactic_dec_ref(_ctx_pointer, tactic._tactic)
|
1987
|
+
end
|
1988
|
+
|
1989
|
+
def tactic_fail
|
1990
|
+
Z3::VeryLowLevel.Z3_tactic_fail(_ctx_pointer)
|
1991
|
+
end
|
1992
|
+
|
1993
|
+
def tactic_fail_if(probe)
|
1994
|
+
Z3::VeryLowLevel.Z3_tactic_fail_if(_ctx_pointer, probe._probe)
|
1995
|
+
end
|
1996
|
+
|
1997
|
+
def tactic_fail_if_not_decided
|
1998
|
+
Z3::VeryLowLevel.Z3_tactic_fail_if_not_decided(_ctx_pointer)
|
1999
|
+
end
|
2000
|
+
|
2001
|
+
def tactic_get_descr(str)
|
2002
|
+
Z3::VeryLowLevel.Z3_tactic_get_descr(_ctx_pointer, str)
|
2003
|
+
end
|
2004
|
+
|
2005
|
+
def tactic_get_help(tactic)
|
2006
|
+
Z3::VeryLowLevel.Z3_tactic_get_help(_ctx_pointer, tactic._tactic)
|
2007
|
+
end
|
2008
|
+
|
2009
|
+
def tactic_get_param_descrs(tactic)
|
2010
|
+
Z3::VeryLowLevel.Z3_tactic_get_param_descrs(_ctx_pointer, tactic._tactic)
|
2011
|
+
end
|
2012
|
+
|
2013
|
+
def tactic_inc_ref(tactic)
|
2014
|
+
Z3::VeryLowLevel.Z3_tactic_inc_ref(_ctx_pointer, tactic._tactic)
|
2015
|
+
end
|
2016
|
+
|
2017
|
+
def tactic_or_else(tactic1, tactic2)
|
2018
|
+
Z3::VeryLowLevel.Z3_tactic_or_else(_ctx_pointer, tactic1._tactic, tactic2._tactic)
|
2019
|
+
end
|
2020
|
+
|
2021
|
+
def tactic_par_and_then(tactic1, tactic2)
|
2022
|
+
Z3::VeryLowLevel.Z3_tactic_par_and_then(_ctx_pointer, tactic1._tactic, tactic2._tactic)
|
2023
|
+
end
|
2024
|
+
|
2025
|
+
def tactic_repeat(tactic, num)
|
2026
|
+
Z3::VeryLowLevel.Z3_tactic_repeat(_ctx_pointer, tactic._tactic, num)
|
2027
|
+
end
|
2028
|
+
|
2029
|
+
def tactic_skip
|
2030
|
+
Z3::VeryLowLevel.Z3_tactic_skip(_ctx_pointer)
|
2031
|
+
end
|
2032
|
+
|
2033
|
+
def tactic_try_for(tactic, num)
|
2034
|
+
Z3::VeryLowLevel.Z3_tactic_try_for(_ctx_pointer, tactic._tactic, num)
|
2035
|
+
end
|
2036
|
+
|
2037
|
+
def tactic_using_params(tactic, params)
|
2038
|
+
Z3::VeryLowLevel.Z3_tactic_using_params(_ctx_pointer, tactic._tactic, params._params)
|
2039
|
+
end
|
2040
|
+
|
2041
|
+
def tactic_when(probe, tactic)
|
2042
|
+
Z3::VeryLowLevel.Z3_tactic_when(_ctx_pointer, probe._probe, tactic._tactic)
|
2043
|
+
end
|
2044
|
+
|
2045
|
+
def to_app(ast)
|
2046
|
+
Z3::VeryLowLevel.Z3_to_app(_ctx_pointer, ast._ast)
|
2047
|
+
end
|
2048
|
+
|
2049
|
+
def to_func_decl(ast)
|
2050
|
+
Z3::VeryLowLevel.Z3_to_func_decl(_ctx_pointer, ast._ast)
|
2051
|
+
end
|
2052
|
+
|
2053
|
+
def toggle_warning_messages(bool)
|
2054
|
+
Z3::VeryLowLevel.Z3_toggle_warning_messages(bool)
|
2055
|
+
end
|
2056
|
+
|
2057
|
+
def translate(ast, context)
|
2058
|
+
Z3::VeryLowLevel.Z3_translate(_ctx_pointer, ast._ast, context._context)
|
2059
|
+
end
|
2060
|
+
|
2061
|
+
def update_param_value(str1, str2)
|
2062
|
+
Z3::VeryLowLevel.Z3_update_param_value(_ctx_pointer, str1, str2)
|
2063
|
+
end
|