This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
z3_api_h.ads
3905 lines (3333 loc) · 132 KB
/
z3_api_h.ads
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
pragma Ada_2012;
pragma Style_Checks (Off);
pragma Warnings ("U");
with Interfaces.C; use Interfaces.C;
with Interfaces.C.Extensions;
with Interfaces.C.Strings;
with System;
package z3_api_h is
-- unsupported macro: Z3_sort_opt Z3_sort
-- unsupported macro: Z3_ast_opt Z3_ast
-- unsupported macro: Z3_func_interp_opt Z3_func_interp
-- unsupported macro: Z3_TRUE true
-- unsupported macro: Z3_FALSE false
subtype uint64_t is Interfaces.C.Extensions.unsigned_long_long;
subtype int64_t is Long_Long_Integer;
type u_Z3_symbol is null record; -- incomplete struct
type Z3_symbol is access all u_Z3_symbol; -- z3/z3/src/api/z3_api.h:7
type u_Z3_literals is null record; -- incomplete struct
type Z3_literals is access all u_Z3_literals; -- z3/z3/src/api/z3_api.h:8
type u_Z3_config is null record; -- incomplete struct
type Z3_config is access all u_Z3_config; -- z3/z3/src/api/z3_api.h:9
type u_Z3_context is null record; -- incomplete struct
type Z3_context is access all u_Z3_context; -- z3/z3/src/api/z3_api.h:10
type u_Z3_sort is null record; -- incomplete struct
type Z3_sort is access all u_Z3_sort; -- z3/z3/src/api/z3_api.h:11
type u_Z3_func_decl is null record; -- incomplete struct
type Z3_func_decl is access all u_Z3_func_decl; -- z3/z3/src/api/z3_api.h:13
type u_Z3_ast is null record; -- incomplete struct
type Z3_ast is access all u_Z3_ast; -- z3/z3/src/api/z3_api.h:14
type u_Z3_app is null record; -- incomplete struct
type Z3_app is access all u_Z3_app; -- z3/z3/src/api/z3_api.h:16
type u_Z3_pattern is null record; -- incomplete struct
type Z3_pattern is access all u_Z3_pattern; -- z3/z3/src/api/z3_api.h:17
type u_Z3_model is null record; -- incomplete struct
type Z3_model is access all u_Z3_model; -- z3/z3/src/api/z3_api.h:18
type u_Z3_constructor is null record; -- incomplete struct
type Z3_constructor is access all u_Z3_constructor; -- z3/z3/src/api/z3_api.h:19
type u_Z3_constructor_list is null record; -- incomplete struct
type Z3_constructor_list is access all u_Z3_constructor_list; -- z3/z3/src/api/z3_api.h:20
type u_Z3_params is null record; -- incomplete struct
type Z3_params is access all u_Z3_params; -- z3/z3/src/api/z3_api.h:21
type u_Z3_param_descrs is null record; -- incomplete struct
type Z3_param_descrs is access all u_Z3_param_descrs; -- z3/z3/src/api/z3_api.h:22
type u_Z3_goal is null record; -- incomplete struct
type Z3_goal is access all u_Z3_goal; -- z3/z3/src/api/z3_api.h:23
type u_Z3_tactic is null record; -- incomplete struct
type Z3_tactic is access all u_Z3_tactic; -- z3/z3/src/api/z3_api.h:24
type u_Z3_probe is null record; -- incomplete struct
type Z3_probe is access all u_Z3_probe; -- z3/z3/src/api/z3_api.h:25
type u_Z3_stats is null record; -- incomplete struct
type Z3_stats is access all u_Z3_stats; -- z3/z3/src/api/z3_api.h:26
type u_Z3_solver is null record; -- incomplete struct
type Z3_solver is access all u_Z3_solver; -- z3/z3/src/api/z3_api.h:27
type u_Z3_solver_callback is null record; -- incomplete struct
type Z3_solver_callback is access all u_Z3_solver_callback; -- z3/z3/src/api/z3_api.h:28
type u_Z3_ast_vector is null record; -- incomplete struct
type Z3_ast_vector is access all u_Z3_ast_vector; -- z3/z3/src/api/z3_api.h:29
type u_Z3_ast_map is null record; -- incomplete struct
type Z3_ast_map is access all u_Z3_ast_map; -- z3/z3/src/api/z3_api.h:30
type u_Z3_apply_result is null record; -- incomplete struct
type Z3_apply_result is access all u_Z3_apply_result; -- z3/z3/src/api/z3_api.h:31
type u_Z3_func_interp is null record; -- incomplete struct
type Z3_func_interp is access all u_Z3_func_interp; -- z3/z3/src/api/z3_api.h:32
type u_Z3_func_entry is null record; -- incomplete struct
type Z3_func_entry is access all u_Z3_func_entry; -- z3/z3/src/api/z3_api.h:34
type u_Z3_fixedpoint is null record; -- incomplete struct
type Z3_fixedpoint is access all u_Z3_fixedpoint; -- z3/z3/src/api/z3_api.h:35
type u_Z3_optimize is null record; -- incomplete struct
type Z3_optimize is access all u_Z3_optimize; -- z3/z3/src/api/z3_api.h:36
type u_Z3_rcf_num is null record; -- incomplete struct
type Z3_rcf_num is access all u_Z3_rcf_num; -- z3/z3/src/api/z3_api.h:37
subtype Z3_bool is Extensions.bool; -- z3/z3/src/api/z3_api.h:79
type Z3_string is new Interfaces.C.Strings.chars_ptr; -- z3/z3/src/api/z3_api.h:84
type Z3_char_ptr is new Interfaces.C.Strings.chars_ptr; -- z3/z3/src/api/z3_api.h:85
type Z3_string_ptr is new System.Address; -- z3/z3/src/api/z3_api.h:86
subtype Z3_lbool is int;
Z3_L_FALSE : constant Z3_lbool := -1;
Z3_L_UNDEF : constant Z3_lbool := 0;
Z3_L_TRUE : constant Z3_lbool := 1; -- z3/z3/src/api/z3_api.h:106
type Z3_symbol_kind is
(Z3_INT_SYMBOL,
Z3_STRING_SYMBOL)
with Convention => C; -- z3/z3/src/api/z3_api.h:119
type Z3_parameter_kind is
(Z3_PARAMETER_INT,
Z3_PARAMETER_DOUBLE,
Z3_PARAMETER_RATIONAL,
Z3_PARAMETER_SYMBOL,
Z3_PARAMETER_SORT,
Z3_PARAMETER_AST,
Z3_PARAMETER_FUNC_DECL)
with Convention => C; -- z3/z3/src/api/z3_api.h:144
subtype Z3_sort_kind is unsigned;
Z3_UNINTERPRETED_SORT : constant Z3_sort_kind := 0;
Z3_BOOL_SORT : constant Z3_sort_kind := 1;
Z3_INT_SORT : constant Z3_sort_kind := 2;
Z3_REAL_SORT : constant Z3_sort_kind := 3;
Z3_BV_SORT : constant Z3_sort_kind := 4;
Z3_ARRAY_SORT : constant Z3_sort_kind := 5;
Z3_DATATYPE_SORT : constant Z3_sort_kind := 6;
Z3_RELATION_SORT : constant Z3_sort_kind := 7;
Z3_FINITE_DOMAIN_SORT : constant Z3_sort_kind := 8;
Z3_FLOATING_POINT_SORT : constant Z3_sort_kind := 9;
Z3_ROUNDING_MODE_SORT : constant Z3_sort_kind := 10;
Z3_SEQ_SORT : constant Z3_sort_kind := 11;
Z3_RE_SORT : constant Z3_sort_kind := 12;
Z3_UNKNOWN_SORT : constant Z3_sort_kind := 1000; -- z3/z3/src/api/z3_api.h:165
subtype Z3_ast_kind is unsigned;
Z3_NUMERAL_AST : constant Z3_ast_kind := 0;
Z3_APP_AST : constant Z3_ast_kind := 1;
Z3_VAR_AST : constant Z3_ast_kind := 2;
Z3_QUANTIFIER_AST : constant Z3_ast_kind := 3;
Z3_SORT_AST : constant Z3_ast_kind := 4;
Z3_FUNC_DECL_AST : constant Z3_ast_kind := 5;
Z3_UNKNOWN_AST : constant Z3_ast_kind := 1000; -- z3/z3/src/api/z3_api.h:188
subtype Z3_decl_kind is unsigned;
Z3_OP_TRUE : constant Z3_decl_kind := 256;
Z3_OP_FALSE : constant Z3_decl_kind := 257;
Z3_OP_EQ : constant Z3_decl_kind := 258;
Z3_OP_DISTINCT : constant Z3_decl_kind := 259;
Z3_OP_ITE : constant Z3_decl_kind := 260;
Z3_OP_AND : constant Z3_decl_kind := 261;
Z3_OP_OR : constant Z3_decl_kind := 262;
Z3_OP_IFF : constant Z3_decl_kind := 263;
Z3_OP_XOR : constant Z3_decl_kind := 264;
Z3_OP_NOT : constant Z3_decl_kind := 265;
Z3_OP_IMPLIES : constant Z3_decl_kind := 266;
Z3_OP_OEQ : constant Z3_decl_kind := 267;
Z3_OP_ANUM : constant Z3_decl_kind := 512;
Z3_OP_AGNUM : constant Z3_decl_kind := 513;
Z3_OP_LE : constant Z3_decl_kind := 514;
Z3_OP_GE : constant Z3_decl_kind := 515;
Z3_OP_LT : constant Z3_decl_kind := 516;
Z3_OP_GT : constant Z3_decl_kind := 517;
Z3_OP_ADD : constant Z3_decl_kind := 518;
Z3_OP_SUB : constant Z3_decl_kind := 519;
Z3_OP_UMINUS : constant Z3_decl_kind := 520;
Z3_OP_MUL : constant Z3_decl_kind := 521;
Z3_OP_DIV : constant Z3_decl_kind := 522;
Z3_OP_IDIV : constant Z3_decl_kind := 523;
Z3_OP_REM : constant Z3_decl_kind := 524;
Z3_OP_MOD : constant Z3_decl_kind := 525;
Z3_OP_TO_REAL : constant Z3_decl_kind := 526;
Z3_OP_TO_INT : constant Z3_decl_kind := 527;
Z3_OP_IS_INT : constant Z3_decl_kind := 528;
Z3_OP_POWER : constant Z3_decl_kind := 529;
Z3_OP_STORE : constant Z3_decl_kind := 768;
Z3_OP_SELECT : constant Z3_decl_kind := 769;
Z3_OP_CONST_ARRAY : constant Z3_decl_kind := 770;
Z3_OP_ARRAY_MAP : constant Z3_decl_kind := 771;
Z3_OP_ARRAY_DEFAULT : constant Z3_decl_kind := 772;
Z3_OP_SET_UNION : constant Z3_decl_kind := 773;
Z3_OP_SET_INTERSECT : constant Z3_decl_kind := 774;
Z3_OP_SET_DIFFERENCE : constant Z3_decl_kind := 775;
Z3_OP_SET_COMPLEMENT : constant Z3_decl_kind := 776;
Z3_OP_SET_SUBSET : constant Z3_decl_kind := 777;
Z3_OP_AS_ARRAY : constant Z3_decl_kind := 778;
Z3_OP_ARRAY_EXT : constant Z3_decl_kind := 779;
Z3_OP_SET_HAS_SIZE : constant Z3_decl_kind := 780;
Z3_OP_SET_CARD : constant Z3_decl_kind := 781;
Z3_OP_BNUM : constant Z3_decl_kind := 1024;
Z3_OP_BIT1 : constant Z3_decl_kind := 1025;
Z3_OP_BIT0 : constant Z3_decl_kind := 1026;
Z3_OP_BNEG : constant Z3_decl_kind := 1027;
Z3_OP_BADD : constant Z3_decl_kind := 1028;
Z3_OP_BSUB : constant Z3_decl_kind := 1029;
Z3_OP_BMUL : constant Z3_decl_kind := 1030;
Z3_OP_BSDIV : constant Z3_decl_kind := 1031;
Z3_OP_BUDIV : constant Z3_decl_kind := 1032;
Z3_OP_BSREM : constant Z3_decl_kind := 1033;
Z3_OP_BUREM : constant Z3_decl_kind := 1034;
Z3_OP_BSMOD : constant Z3_decl_kind := 1035;
Z3_OP_BSDIV0 : constant Z3_decl_kind := 1036;
Z3_OP_BUDIV0 : constant Z3_decl_kind := 1037;
Z3_OP_BSREM0 : constant Z3_decl_kind := 1038;
Z3_OP_BUREM0 : constant Z3_decl_kind := 1039;
Z3_OP_BSMOD0 : constant Z3_decl_kind := 1040;
Z3_OP_ULEQ : constant Z3_decl_kind := 1041;
Z3_OP_SLEQ : constant Z3_decl_kind := 1042;
Z3_OP_UGEQ : constant Z3_decl_kind := 1043;
Z3_OP_SGEQ : constant Z3_decl_kind := 1044;
Z3_OP_ULT : constant Z3_decl_kind := 1045;
Z3_OP_SLT : constant Z3_decl_kind := 1046;
Z3_OP_UGT : constant Z3_decl_kind := 1047;
Z3_OP_SGT : constant Z3_decl_kind := 1048;
Z3_OP_BAND : constant Z3_decl_kind := 1049;
Z3_OP_BOR : constant Z3_decl_kind := 1050;
Z3_OP_BNOT : constant Z3_decl_kind := 1051;
Z3_OP_BXOR : constant Z3_decl_kind := 1052;
Z3_OP_BNAND : constant Z3_decl_kind := 1053;
Z3_OP_BNOR : constant Z3_decl_kind := 1054;
Z3_OP_BXNOR : constant Z3_decl_kind := 1055;
Z3_OP_CONCAT : constant Z3_decl_kind := 1056;
Z3_OP_SIGN_EXT : constant Z3_decl_kind := 1057;
Z3_OP_ZERO_EXT : constant Z3_decl_kind := 1058;
Z3_OP_EXTRACT : constant Z3_decl_kind := 1059;
Z3_OP_REPEAT : constant Z3_decl_kind := 1060;
Z3_OP_BREDOR : constant Z3_decl_kind := 1061;
Z3_OP_BREDAND : constant Z3_decl_kind := 1062;
Z3_OP_BCOMP : constant Z3_decl_kind := 1063;
Z3_OP_BSHL : constant Z3_decl_kind := 1064;
Z3_OP_BLSHR : constant Z3_decl_kind := 1065;
Z3_OP_BASHR : constant Z3_decl_kind := 1066;
Z3_OP_ROTATE_LEFT : constant Z3_decl_kind := 1067;
Z3_OP_ROTATE_RIGHT : constant Z3_decl_kind := 1068;
Z3_OP_EXT_ROTATE_LEFT : constant Z3_decl_kind := 1069;
Z3_OP_EXT_ROTATE_RIGHT : constant Z3_decl_kind := 1070;
Z3_OP_BIT2BOOL : constant Z3_decl_kind := 1071;
Z3_OP_INT2BV : constant Z3_decl_kind := 1072;
Z3_OP_BV2INT : constant Z3_decl_kind := 1073;
Z3_OP_CARRY : constant Z3_decl_kind := 1074;
Z3_OP_XOR3 : constant Z3_decl_kind := 1075;
Z3_OP_BSMUL_NO_OVFL : constant Z3_decl_kind := 1076;
Z3_OP_BUMUL_NO_OVFL : constant Z3_decl_kind := 1077;
Z3_OP_BSMUL_NO_UDFL : constant Z3_decl_kind := 1078;
Z3_OP_BSDIV_I : constant Z3_decl_kind := 1079;
Z3_OP_BUDIV_I : constant Z3_decl_kind := 1080;
Z3_OP_BSREM_I : constant Z3_decl_kind := 1081;
Z3_OP_BUREM_I : constant Z3_decl_kind := 1082;
Z3_OP_BSMOD_I : constant Z3_decl_kind := 1083;
Z3_OP_PR_UNDEF : constant Z3_decl_kind := 1280;
Z3_OP_PR_TRUE : constant Z3_decl_kind := 1281;
Z3_OP_PR_ASSERTED : constant Z3_decl_kind := 1282;
Z3_OP_PR_GOAL : constant Z3_decl_kind := 1283;
Z3_OP_PR_MODUS_PONENS : constant Z3_decl_kind := 1284;
Z3_OP_PR_REFLEXIVITY : constant Z3_decl_kind := 1285;
Z3_OP_PR_SYMMETRY : constant Z3_decl_kind := 1286;
Z3_OP_PR_TRANSITIVITY : constant Z3_decl_kind := 1287;
Z3_OP_PR_TRANSITIVITY_STAR : constant Z3_decl_kind := 1288;
Z3_OP_PR_MONOTONICITY : constant Z3_decl_kind := 1289;
Z3_OP_PR_QUANT_INTRO : constant Z3_decl_kind := 1290;
Z3_OP_PR_BIND : constant Z3_decl_kind := 1291;
Z3_OP_PR_DISTRIBUTIVITY : constant Z3_decl_kind := 1292;
Z3_OP_PR_AND_ELIM : constant Z3_decl_kind := 1293;
Z3_OP_PR_NOT_OR_ELIM : constant Z3_decl_kind := 1294;
Z3_OP_PR_REWRITE : constant Z3_decl_kind := 1295;
Z3_OP_PR_REWRITE_STAR : constant Z3_decl_kind := 1296;
Z3_OP_PR_PULL_QUANT : constant Z3_decl_kind := 1297;
Z3_OP_PR_PUSH_QUANT : constant Z3_decl_kind := 1298;
Z3_OP_PR_ELIM_UNUSED_VARS : constant Z3_decl_kind := 1299;
Z3_OP_PR_DER : constant Z3_decl_kind := 1300;
Z3_OP_PR_QUANT_INST : constant Z3_decl_kind := 1301;
Z3_OP_PR_HYPOTHESIS : constant Z3_decl_kind := 1302;
Z3_OP_PR_LEMMA : constant Z3_decl_kind := 1303;
Z3_OP_PR_UNIT_RESOLUTION : constant Z3_decl_kind := 1304;
Z3_OP_PR_IFF_TRUE : constant Z3_decl_kind := 1305;
Z3_OP_PR_IFF_FALSE : constant Z3_decl_kind := 1306;
Z3_OP_PR_COMMUTATIVITY : constant Z3_decl_kind := 1307;
Z3_OP_PR_DEF_AXIOM : constant Z3_decl_kind := 1308;
Z3_OP_PR_ASSUMPTION_ADD : constant Z3_decl_kind := 1309;
Z3_OP_PR_LEMMA_ADD : constant Z3_decl_kind := 1310;
Z3_OP_PR_REDUNDANT_DEL : constant Z3_decl_kind := 1311;
Z3_OP_PR_CLAUSE_TRAIL : constant Z3_decl_kind := 1312;
Z3_OP_PR_DEF_INTRO : constant Z3_decl_kind := 1313;
Z3_OP_PR_APPLY_DEF : constant Z3_decl_kind := 1314;
Z3_OP_PR_IFF_OEQ : constant Z3_decl_kind := 1315;
Z3_OP_PR_NNF_POS : constant Z3_decl_kind := 1316;
Z3_OP_PR_NNF_NEG : constant Z3_decl_kind := 1317;
Z3_OP_PR_SKOLEMIZE : constant Z3_decl_kind := 1318;
Z3_OP_PR_MODUS_PONENS_OEQ : constant Z3_decl_kind := 1319;
Z3_OP_PR_TH_LEMMA : constant Z3_decl_kind := 1320;
Z3_OP_PR_HYPER_RESOLVE : constant Z3_decl_kind := 1321;
Z3_OP_RA_STORE : constant Z3_decl_kind := 1536;
Z3_OP_RA_EMPTY : constant Z3_decl_kind := 1537;
Z3_OP_RA_IS_EMPTY : constant Z3_decl_kind := 1538;
Z3_OP_RA_JOIN : constant Z3_decl_kind := 1539;
Z3_OP_RA_UNION : constant Z3_decl_kind := 1540;
Z3_OP_RA_WIDEN : constant Z3_decl_kind := 1541;
Z3_OP_RA_PROJECT : constant Z3_decl_kind := 1542;
Z3_OP_RA_FILTER : constant Z3_decl_kind := 1543;
Z3_OP_RA_NEGATION_FILTER : constant Z3_decl_kind := 1544;
Z3_OP_RA_RENAME : constant Z3_decl_kind := 1545;
Z3_OP_RA_COMPLEMENT : constant Z3_decl_kind := 1546;
Z3_OP_RA_SELECT : constant Z3_decl_kind := 1547;
Z3_OP_RA_CLONE : constant Z3_decl_kind := 1548;
Z3_OP_FD_CONSTANT : constant Z3_decl_kind := 1549;
Z3_OP_FD_LT : constant Z3_decl_kind := 1550;
Z3_OP_SEQ_UNIT : constant Z3_decl_kind := 1551;
Z3_OP_SEQ_EMPTY : constant Z3_decl_kind := 1552;
Z3_OP_SEQ_CONCAT : constant Z3_decl_kind := 1553;
Z3_OP_SEQ_PREFIX : constant Z3_decl_kind := 1554;
Z3_OP_SEQ_SUFFIX : constant Z3_decl_kind := 1555;
Z3_OP_SEQ_CONTAINS : constant Z3_decl_kind := 1556;
Z3_OP_SEQ_EXTRACT : constant Z3_decl_kind := 1557;
Z3_OP_SEQ_REPLACE : constant Z3_decl_kind := 1558;
Z3_OP_SEQ_AT : constant Z3_decl_kind := 1559;
Z3_OP_SEQ_NTH : constant Z3_decl_kind := 1560;
Z3_OP_SEQ_LENGTH : constant Z3_decl_kind := 1561;
Z3_OP_SEQ_INDEX : constant Z3_decl_kind := 1562;
Z3_OP_SEQ_LAST_INDEX : constant Z3_decl_kind := 1563;
Z3_OP_SEQ_TO_RE : constant Z3_decl_kind := 1564;
Z3_OP_SEQ_IN_RE : constant Z3_decl_kind := 1565;
Z3_OP_STR_TO_INT : constant Z3_decl_kind := 1566;
Z3_OP_INT_TO_STR : constant Z3_decl_kind := 1567;
Z3_OP_STRING_LT : constant Z3_decl_kind := 1568;
Z3_OP_STRING_LE : constant Z3_decl_kind := 1569;
Z3_OP_RE_PLUS : constant Z3_decl_kind := 1570;
Z3_OP_RE_STAR : constant Z3_decl_kind := 1571;
Z3_OP_RE_OPTION : constant Z3_decl_kind := 1572;
Z3_OP_RE_CONCAT : constant Z3_decl_kind := 1573;
Z3_OP_RE_UNION : constant Z3_decl_kind := 1574;
Z3_OP_RE_RANGE : constant Z3_decl_kind := 1575;
Z3_OP_RE_LOOP : constant Z3_decl_kind := 1576;
Z3_OP_RE_INTERSECT : constant Z3_decl_kind := 1577;
Z3_OP_RE_EMPTY_SET : constant Z3_decl_kind := 1578;
Z3_OP_RE_FULL_SET : constant Z3_decl_kind := 1579;
Z3_OP_RE_COMPLEMENT : constant Z3_decl_kind := 1580;
Z3_OP_LABEL : constant Z3_decl_kind := 1792;
Z3_OP_LABEL_LIT : constant Z3_decl_kind := 1793;
Z3_OP_DT_CONSTRUCTOR : constant Z3_decl_kind := 2048;
Z3_OP_DT_RECOGNISER : constant Z3_decl_kind := 2049;
Z3_OP_DT_IS : constant Z3_decl_kind := 2050;
Z3_OP_DT_ACCESSOR : constant Z3_decl_kind := 2051;
Z3_OP_DT_UPDATE_FIELD : constant Z3_decl_kind := 2052;
Z3_OP_PB_AT_MOST : constant Z3_decl_kind := 2304;
Z3_OP_PB_AT_LEAST : constant Z3_decl_kind := 2305;
Z3_OP_PB_LE : constant Z3_decl_kind := 2306;
Z3_OP_PB_GE : constant Z3_decl_kind := 2307;
Z3_OP_PB_EQ : constant Z3_decl_kind := 2308;
Z3_OP_SPECIAL_RELATION_LO : constant Z3_decl_kind := 40960;
Z3_OP_SPECIAL_RELATION_PO : constant Z3_decl_kind := 40961;
Z3_OP_SPECIAL_RELATION_PLO : constant Z3_decl_kind := 40962;
Z3_OP_SPECIAL_RELATION_TO : constant Z3_decl_kind := 40963;
Z3_OP_SPECIAL_RELATION_TC : constant Z3_decl_kind := 40964;
Z3_OP_SPECIAL_RELATION_TRC : constant Z3_decl_kind := 40965;
Z3_OP_FPA_RM_NEAREST_TIES_TO_EVEN : constant Z3_decl_kind := 45056;
Z3_OP_FPA_RM_NEAREST_TIES_TO_AWAY : constant Z3_decl_kind := 45057;
Z3_OP_FPA_RM_TOWARD_POSITIVE : constant Z3_decl_kind := 45058;
Z3_OP_FPA_RM_TOWARD_NEGATIVE : constant Z3_decl_kind := 45059;
Z3_OP_FPA_RM_TOWARD_ZERO : constant Z3_decl_kind := 45060;
Z3_OP_FPA_NUM : constant Z3_decl_kind := 45061;
Z3_OP_FPA_PLUS_INF : constant Z3_decl_kind := 45062;
Z3_OP_FPA_MINUS_INF : constant Z3_decl_kind := 45063;
Z3_OP_FPA_NAN : constant Z3_decl_kind := 45064;
Z3_OP_FPA_PLUS_ZERO : constant Z3_decl_kind := 45065;
Z3_OP_FPA_MINUS_ZERO : constant Z3_decl_kind := 45066;
Z3_OP_FPA_ADD : constant Z3_decl_kind := 45067;
Z3_OP_FPA_SUB : constant Z3_decl_kind := 45068;
Z3_OP_FPA_NEG : constant Z3_decl_kind := 45069;
Z3_OP_FPA_MUL : constant Z3_decl_kind := 45070;
Z3_OP_FPA_DIV : constant Z3_decl_kind := 45071;
Z3_OP_FPA_REM : constant Z3_decl_kind := 45072;
Z3_OP_FPA_ABS : constant Z3_decl_kind := 45073;
Z3_OP_FPA_MIN : constant Z3_decl_kind := 45074;
Z3_OP_FPA_MAX : constant Z3_decl_kind := 45075;
Z3_OP_FPA_FMA : constant Z3_decl_kind := 45076;
Z3_OP_FPA_SQRT : constant Z3_decl_kind := 45077;
Z3_OP_FPA_ROUND_TO_INTEGRAL : constant Z3_decl_kind := 45078;
Z3_OP_FPA_EQ : constant Z3_decl_kind := 45079;
Z3_OP_FPA_LT : constant Z3_decl_kind := 45080;
Z3_OP_FPA_GT : constant Z3_decl_kind := 45081;
Z3_OP_FPA_LE : constant Z3_decl_kind := 45082;
Z3_OP_FPA_GE : constant Z3_decl_kind := 45083;
Z3_OP_FPA_IS_NAN : constant Z3_decl_kind := 45084;
Z3_OP_FPA_IS_INF : constant Z3_decl_kind := 45085;
Z3_OP_FPA_IS_ZERO : constant Z3_decl_kind := 45086;
Z3_OP_FPA_IS_NORMAL : constant Z3_decl_kind := 45087;
Z3_OP_FPA_IS_SUBNORMAL : constant Z3_decl_kind := 45088;
Z3_OP_FPA_IS_NEGATIVE : constant Z3_decl_kind := 45089;
Z3_OP_FPA_IS_POSITIVE : constant Z3_decl_kind := 45090;
Z3_OP_FPA_FP : constant Z3_decl_kind := 45091;
Z3_OP_FPA_TO_FP : constant Z3_decl_kind := 45092;
Z3_OP_FPA_TO_FP_UNSIGNED : constant Z3_decl_kind := 45093;
Z3_OP_FPA_TO_UBV : constant Z3_decl_kind := 45094;
Z3_OP_FPA_TO_SBV : constant Z3_decl_kind := 45095;
Z3_OP_FPA_TO_REAL : constant Z3_decl_kind := 45096;
Z3_OP_FPA_TO_IEEE_BV : constant Z3_decl_kind := 45097;
Z3_OP_FPA_BVWRAP : constant Z3_decl_kind := 45098;
Z3_OP_FPA_BV2RM : constant Z3_decl_kind := 45099;
Z3_OP_INTERNAL : constant Z3_decl_kind := 45100;
Z3_OP_UNINTERPRETED : constant Z3_decl_kind := 45101; -- z3/z3/src/api/z3_api.h:1303
type Z3_param_kind is
(Z3_PK_UINT,
Z3_PK_BOOL,
Z3_PK_DOUBLE,
Z3_PK_SYMBOL,
Z3_PK_STRING,
Z3_PK_OTHER,
Z3_PK_INVALID)
with Convention => C; -- z3/z3/src/api/z3_api.h:1325
type Z3_ast_print_mode is
(Z3_PRINT_SMTLIB_FULL,
Z3_PRINT_LOW_LEVEL,
Z3_PRINT_SMTLIB2_COMPLIANT)
with Convention => C; -- z3/z3/src/api/z3_api.h:1338
type Z3_error_code is
(Z3_OK,
Z3_SORT_ERROR,
Z3_IOB,
Z3_INVALID_ARG,
Z3_PARSER_ERROR,
Z3_NO_PARSER,
Z3_INVALID_PATTERN,
Z3_MEMOUT_FAIL,
Z3_FILE_ACCESS_ERROR,
Z3_INTERNAL_FATAL,
Z3_INVALID_USAGE,
Z3_DEC_REF_ERROR,
Z3_EXCEPTION)
with Convention => C; -- z3/z3/src/api/z3_api.h:1373
-- skipped function type Z3_error_handler
-- skipped function type Z3_push_eh
-- skipped function type Z3_pop_eh
-- skipped function type Z3_fresh_eh
-- skipped function type Z3_fixed_eh
-- skipped function type Z3_eq_eh
-- skipped function type Z3_final_eh
type Z3_goal_prec is
(Z3_GOAL_PRECISE,
Z3_GOAL_UNDER,
Z3_GOAL_OVER,
Z3_GOAL_UNDER_OVER)
with Convention => C; -- z3/z3/src/api/z3_api.h:1440
procedure Z3_global_param_set (param_id : Z3_string; param_value : Z3_string) -- z3/z3/src/api/z3_api.h:1475
with Import => True,
Convention => C,
External_Name => "Z3_global_param_set";
procedure Z3_global_param_reset_all -- z3/z3/src/api/z3_api.h:1487
with Import => True,
Convention => C,
External_Name => "Z3_global_param_reset_all";
function Z3_global_param_get (param_id : Z3_string; param_value : Z3_string_ptr) return Z3_bool -- z3/z3/src/api/z3_api.h:1502
with Import => True,
Convention => C,
External_Name => "Z3_global_param_get";
function Z3_mk_config return Z3_config -- z3/z3/src/api/z3_api.h:1539
with Import => True,
Convention => C,
External_Name => "Z3_mk_config";
procedure Z3_del_config (c : Z3_config) -- z3/z3/src/api/z3_api.h:1548
with Import => True,
Convention => C,
External_Name => "Z3_del_config";
procedure Z3_set_param_value
(c : Z3_config;
param_id : Z3_string;
param_value : Z3_string) -- z3/z3/src/api/z3_api.h:1559
with Import => True,
Convention => C,
External_Name => "Z3_set_param_value";
function Z3_mk_context (c : Z3_config) return Z3_context -- z3/z3/src/api/z3_api.h:1599
with Import => True,
Convention => C,
External_Name => "Z3_mk_context";
function Z3_mk_context_rc (c : Z3_config) return Z3_context -- z3/z3/src/api/z3_api.h:1623
with Import => True,
Convention => C,
External_Name => "Z3_mk_context_rc";
procedure Z3_del_context (c : Z3_context) -- z3/z3/src/api/z3_api.h:1632
with Import => True,
Convention => C,
External_Name => "Z3_del_context";
procedure Z3_inc_ref (c : Z3_context; a : Z3_ast) -- z3/z3/src/api/z3_api.h:1641
with Import => True,
Convention => C,
External_Name => "Z3_inc_ref";
procedure Z3_dec_ref (c : Z3_context; a : Z3_ast) -- z3/z3/src/api/z3_api.h:1650
with Import => True,
Convention => C,
External_Name => "Z3_dec_ref";
procedure Z3_update_param_value
(c : Z3_context;
param_id : Z3_string;
param_value : Z3_string) -- z3/z3/src/api/z3_api.h:1659
with Import => True,
Convention => C,
External_Name => "Z3_update_param_value";
procedure Z3_interrupt (c : Z3_context) -- z3/z3/src/api/z3_api.h:1667
with Import => True,
Convention => C,
External_Name => "Z3_interrupt";
function Z3_mk_params (c : Z3_context) return Z3_params -- z3/z3/src/api/z3_api.h:1685
with Import => True,
Convention => C,
External_Name => "Z3_mk_params";
procedure Z3_params_inc_ref (c : Z3_context; p : Z3_params) -- z3/z3/src/api/z3_api.h:1692
with Import => True,
Convention => C,
External_Name => "Z3_params_inc_ref";
procedure Z3_params_dec_ref (c : Z3_context; p : Z3_params) -- z3/z3/src/api/z3_api.h:1699
with Import => True,
Convention => C,
External_Name => "Z3_params_dec_ref";
procedure Z3_params_set_bool
(c : Z3_context;
p : Z3_params;
k : Z3_symbol;
v : Extensions.bool) -- z3/z3/src/api/z3_api.h:1706
with Import => True,
Convention => C,
External_Name => "Z3_params_set_bool";
procedure Z3_params_set_uint
(c : Z3_context;
p : Z3_params;
k : Z3_symbol;
v : unsigned) -- z3/z3/src/api/z3_api.h:1713
with Import => True,
Convention => C,
External_Name => "Z3_params_set_uint";
procedure Z3_params_set_double
(c : Z3_context;
p : Z3_params;
k : Z3_symbol;
v : double) -- z3/z3/src/api/z3_api.h:1720
with Import => True,
Convention => C,
External_Name => "Z3_params_set_double";
procedure Z3_params_set_symbol
(c : Z3_context;
p : Z3_params;
k : Z3_symbol;
v : Z3_symbol) -- z3/z3/src/api/z3_api.h:1727
with Import => True,
Convention => C,
External_Name => "Z3_params_set_symbol";
function Z3_params_to_string (c : Z3_context; p : Z3_params) return Z3_string -- z3/z3/src/api/z3_api.h:1735
with Import => True,
Convention => C,
External_Name => "Z3_params_to_string";
procedure Z3_params_validate
(c : Z3_context;
p : Z3_params;
d : Z3_param_descrs) -- z3/z3/src/api/z3_api.h:1744
with Import => True,
Convention => C,
External_Name => "Z3_params_validate";
procedure Z3_param_descrs_inc_ref (c : Z3_context; p : Z3_param_descrs) -- z3/z3/src/api/z3_api.h:1756
with Import => True,
Convention => C,
External_Name => "Z3_param_descrs_inc_ref";
procedure Z3_param_descrs_dec_ref (c : Z3_context; p : Z3_param_descrs) -- z3/z3/src/api/z3_api.h:1763
with Import => True,
Convention => C,
External_Name => "Z3_param_descrs_dec_ref";
function Z3_param_descrs_get_kind
(c : Z3_context;
p : Z3_param_descrs;
n : Z3_symbol) return Z3_param_kind -- z3/z3/src/api/z3_api.h:1770
with Import => True,
Convention => C,
External_Name => "Z3_param_descrs_get_kind";
function Z3_param_descrs_size (c : Z3_context; p : Z3_param_descrs) return unsigned -- z3/z3/src/api/z3_api.h:1777
with Import => True,
Convention => C,
External_Name => "Z3_param_descrs_size";
function Z3_param_descrs_get_name
(c : Z3_context;
p : Z3_param_descrs;
i : unsigned) return Z3_symbol -- z3/z3/src/api/z3_api.h:1786
with Import => True,
Convention => C,
External_Name => "Z3_param_descrs_get_name";
function Z3_param_descrs_get_documentation
(c : Z3_context;
p : Z3_param_descrs;
s : Z3_symbol) return Z3_string -- z3/z3/src/api/z3_api.h:1793
with Import => True,
Convention => C,
External_Name => "Z3_param_descrs_get_documentation";
function Z3_param_descrs_to_string (c : Z3_context; p : Z3_param_descrs) return Z3_string -- z3/z3/src/api/z3_api.h:1801
with Import => True,
Convention => C,
External_Name => "Z3_param_descrs_to_string";
function Z3_mk_int_symbol (c : Z3_context; i : int) return Z3_symbol -- z3/z3/src/api/z3_api.h:1821
with Import => True,
Convention => C,
External_Name => "Z3_mk_int_symbol";
function Z3_mk_string_symbol (c : Z3_context; s : Z3_string) return Z3_symbol -- z3/z3/src/api/z3_api.h:1833
with Import => True,
Convention => C,
External_Name => "Z3_mk_string_symbol";
function Z3_mk_uninterpreted_sort (c : Z3_context; s : Z3_symbol) return Z3_sort -- z3/z3/src/api/z3_api.h:1847
with Import => True,
Convention => C,
External_Name => "Z3_mk_uninterpreted_sort";
function Z3_mk_bool_sort (c : Z3_context) return Z3_sort -- z3/z3/src/api/z3_api.h:1856
with Import => True,
Convention => C,
External_Name => "Z3_mk_bool_sort";
function Z3_mk_int_sort (c : Z3_context) return Z3_sort -- z3/z3/src/api/z3_api.h:1869
with Import => True,
Convention => C,
External_Name => "Z3_mk_int_sort";
function Z3_mk_real_sort (c : Z3_context) return Z3_sort -- z3/z3/src/api/z3_api.h:1878
with Import => True,
Convention => C,
External_Name => "Z3_mk_real_sort";
function Z3_mk_bv_sort (c : Z3_context; sz : unsigned) return Z3_sort -- z3/z3/src/api/z3_api.h:1889
with Import => True,
Convention => C,
External_Name => "Z3_mk_bv_sort";
function Z3_mk_finite_domain_sort
(c : Z3_context;
name : Z3_symbol;
size : uint64_t) return Z3_sort -- z3/z3/src/api/z3_api.h:1904
with Import => True,
Convention => C,
External_Name => "Z3_mk_finite_domain_sort";
function Z3_mk_array_sort
(c : Z3_context;
domain : Z3_sort;
c_range : Z3_sort) return Z3_sort -- z3/z3/src/api/z3_api.h:1917
with Import => True,
Convention => C,
External_Name => "Z3_mk_array_sort";
function Z3_mk_array_sort_n
(c : Z3_context;
n : unsigned;
domain : System.Address;
c_range : Z3_sort) return Z3_sort -- z3/z3/src/api/z3_api.h:1927
with Import => True,
Convention => C,
External_Name => "Z3_mk_array_sort_n";
function Z3_mk_tuple_sort
(c : Z3_context;
mk_tuple_name : Z3_symbol;
num_fields : unsigned;
field_names : System.Address;
field_sorts : System.Address;
mk_tuple_decl : System.Address;
proj_decl : System.Address) return Z3_sort -- z3/z3/src/api/z3_api.h:1945
with Import => True,
Convention => C,
External_Name => "Z3_mk_tuple_sort";
function Z3_mk_enumeration_sort
(c : Z3_context;
name : Z3_symbol;
n : unsigned;
enum_names : System.Address;
enum_consts : System.Address;
enum_testers : System.Address) return Z3_sort -- z3/z3/src/api/z3_api.h:1974
with Import => True,
Convention => C,
External_Name => "Z3_mk_enumeration_sort";
function Z3_mk_list_sort
(c : Z3_context;
name : Z3_symbol;
elem_sort : Z3_sort;
nil_decl : System.Address;
is_nil_decl : System.Address;
cons_decl : System.Address;
is_cons_decl : System.Address;
head_decl : System.Address;
tail_decl : System.Address) return Z3_sort -- z3/z3/src/api/z3_api.h:1999
with Import => True,
Convention => C,
External_Name => "Z3_mk_list_sort";
function Z3_mk_constructor
(c : Z3_context;
name : Z3_symbol;
recognizer : Z3_symbol;
num_fields : unsigned;
field_names : System.Address;
sorts : System.Address;
sort_refs : access unsigned) return Z3_constructor -- z3/z3/src/api/z3_api.h:2029
with Import => True,
Convention => C,
External_Name => "Z3_mk_constructor";
procedure Z3_del_constructor (c : Z3_context; constr : Z3_constructor) -- z3/z3/src/api/z3_api.h:2048
with Import => True,
Convention => C,
External_Name => "Z3_del_constructor";
function Z3_mk_datatype
(c : Z3_context;
name : Z3_symbol;
num_constructors : unsigned;
constructors : System.Address) return Z3_sort -- z3/z3/src/api/z3_api.h:2065
with Import => True,
Convention => C,
External_Name => "Z3_mk_datatype";
function Z3_mk_constructor_list
(c : Z3_context;
num_constructors : unsigned;
constructors : System.Address) return Z3_constructor_list -- z3/z3/src/api/z3_api.h:2082
with Import => True,
Convention => C,
External_Name => "Z3_mk_constructor_list";
procedure Z3_del_constructor_list (c : Z3_context; clist : Z3_constructor_list) -- z3/z3/src/api/z3_api.h:2098
with Import => True,
Convention => C,
External_Name => "Z3_del_constructor_list";
procedure Z3_mk_datatypes
(c : Z3_context;
num_sorts : unsigned;
sort_names : System.Address;
sorts : System.Address;
constructor_lists : System.Address) -- z3/z3/src/api/z3_api.h:2115
with Import => True,
Convention => C,
External_Name => "Z3_mk_datatypes";
procedure Z3_query_constructor
(c : Z3_context;
constr : Z3_constructor;
num_fields : unsigned;
constructor : System.Address;
tester : System.Address;
accessors : System.Address) -- z3/z3/src/api/z3_api.h:2135
with Import => True,
Convention => C,
External_Name => "Z3_query_constructor";
function Z3_mk_func_decl
(c : Z3_context;
s : Z3_symbol;
domain_size : unsigned;
domain : System.Address;
c_range : Z3_sort) return Z3_func_decl -- z3/z3/src/api/z3_api.h:2166
with Import => True,
Convention => C,
External_Name => "Z3_mk_func_decl";
function Z3_mk_app
(c : Z3_context;
d : Z3_func_decl;
num_args : unsigned;
args : System.Address) return Z3_ast -- z3/z3/src/api/z3_api.h:2181
with Import => True,
Convention => C,
External_Name => "Z3_mk_app";
function Z3_mk_const
(c : Z3_context;
s : Z3_symbol;
ty : Z3_sort) return Z3_ast -- z3/z3/src/api/z3_api.h:2202
with Import => True,
Convention => C,
External_Name => "Z3_mk_const";
function Z3_mk_fresh_func_decl
(c : Z3_context;
prefix : Z3_string;
domain_size : unsigned;
domain : System.Address;
c_range : Z3_sort) return Z3_func_decl -- z3/z3/src/api/z3_api.h:2216
with Import => True,
Convention => C,
External_Name => "Z3_mk_fresh_func_decl";
function Z3_mk_fresh_const
(c : Z3_context;
prefix : Z3_string;
ty : Z3_sort) return Z3_ast -- z3/z3/src/api/z3_api.h:2235
with Import => True,
Convention => C,
External_Name => "Z3_mk_fresh_const";
function Z3_mk_rec_func_decl
(c : Z3_context;
s : Z3_symbol;
domain_size : unsigned;
domain : System.Address;
c_range : Z3_sort) return Z3_func_decl -- z3/z3/src/api/z3_api.h:2257
with Import => True,
Convention => C,
External_Name => "Z3_mk_rec_func_decl";
procedure Z3_add_rec_def
(c : Z3_context;
f : Z3_func_decl;
n : unsigned;
args : System.Address;
c_body : Z3_ast) -- z3/z3/src/api/z3_api.h:2277
with Import => True,
Convention => C,
External_Name => "Z3_add_rec_def";
function Z3_mk_true (c : Z3_context) return Z3_ast -- z3/z3/src/api/z3_api.h:2288
with Import => True,
Convention => C,
External_Name => "Z3_mk_true";
function Z3_mk_false (c : Z3_context) return Z3_ast -- z3/z3/src/api/z3_api.h:2295
with Import => True,
Convention => C,
External_Name => "Z3_mk_false";
function Z3_mk_eq
(c : Z3_context;
l : Z3_ast;
r : Z3_ast) return Z3_ast -- z3/z3/src/api/z3_api.h:2304
with Import => True,
Convention => C,
External_Name => "Z3_mk_eq";
function Z3_mk_distinct
(c : Z3_context;
num_args : unsigned;
args : System.Address) return Z3_ast -- z3/z3/src/api/z3_api.h:2318
with Import => True,
Convention => C,
External_Name => "Z3_mk_distinct";
function Z3_mk_not (c : Z3_context; a : Z3_ast) return Z3_ast -- z3/z3/src/api/z3_api.h:2327
with Import => True,
Convention => C,
External_Name => "Z3_mk_not";
function Z3_mk_ite
(c : Z3_context;
t1 : Z3_ast;
t2 : Z3_ast;
t3 : Z3_ast) return Z3_ast -- z3/z3/src/api/z3_api.h:2337
with Import => True,
Convention => C,
External_Name => "Z3_mk_ite";
function Z3_mk_iff
(c : Z3_context;
t1 : Z3_ast;
t2 : Z3_ast) return Z3_ast -- z3/z3/src/api/z3_api.h:2346
with Import => True,
Convention => C,
External_Name => "Z3_mk_iff";
function Z3_mk_implies
(c : Z3_context;
t1 : Z3_ast;
t2 : Z3_ast) return Z3_ast -- z3/z3/src/api/z3_api.h:2355
with Import => True,
Convention => C,
External_Name => "Z3_mk_implies";
function Z3_mk_xor
(c : Z3_context;
t1 : Z3_ast;
t2 : Z3_ast) return Z3_ast -- z3/z3/src/api/z3_api.h:2364
with Import => True,
Convention => C,
External_Name => "Z3_mk_xor";
function Z3_mk_and
(c : Z3_context;
num_args : unsigned;
args : System.Address) return Z3_ast -- z3/z3/src/api/z3_api.h:2376
with Import => True,
Convention => C,
External_Name => "Z3_mk_and";
function Z3_mk_or
(c : Z3_context;
num_args : unsigned;
args : System.Address) return Z3_ast -- z3/z3/src/api/z3_api.h:2388
with Import => True,
Convention => C,
External_Name => "Z3_mk_or";
function Z3_mk_add
(c : Z3_context;
num_args : unsigned;
args : System.Address) return Z3_ast -- z3/z3/src/api/z3_api.h:2403
with Import => True,
Convention => C,
External_Name => "Z3_mk_add";
function Z3_mk_mul
(c : Z3_context;
num_args : unsigned;
args : System.Address) return Z3_ast -- z3/z3/src/api/z3_api.h:2416
with Import => True,
Convention => C,
External_Name => "Z3_mk_mul";
function Z3_mk_sub
(c : Z3_context;
num_args : unsigned;
args : System.Address) return Z3_ast -- z3/z3/src/api/z3_api.h:2428
with Import => True,
Convention => C,
External_Name => "Z3_mk_sub";