Z3
z3_api.h
Go to the documentation of this file.
1 
2 /*++
3 Copyright (c) 2015 Microsoft Corporation
4 
5 --*/
6 
7 #ifndef Z3_API_H_
8 #define Z3_API_H_
9 
10 #ifdef CAMLIDL
11  #ifdef MLAPIV3
12  #define ML3only
13  #define CorML3
14  #else
15  #define ML4only
16  #define CorML4
17  #endif
18 #else
19  #define Conly
20  #define CorML3
21  #define CorML4
22 #endif
23 
24 #ifdef CorML3
25 DEFINE_TYPE(Z3_symbol);
31 #define Z3_sort_opt Z3_sort
34 #define Z3_ast_opt Z3_ast
40 #endif
41 #ifdef Conly
53 #define Z3_func_interp_opt Z3_func_interp
59 #endif
60 
61 #ifndef __int64
62 #define __int64 long long
63 #endif
64 
65 #ifndef __uint64
66 #define __uint64 unsigned long long
67 #endif
68 
74 
106 #ifdef Conly
107 
110 typedef int Z3_bool;
111 #else
112 #define Z3_bool boolean
113 #endif
114 
115 #ifdef Conly
116 
119 typedef const char * Z3_string;
121 #else
122 typedef [string] const char * Z3_string;
123 #define Z3_string_ptr Z3_string *
124 #endif
125 
126 #ifdef Conly
127 
130 #define Z3_TRUE 1
131 
135 #define Z3_FALSE 0
136 
137 #endif
138 
143 typedef enum
144 {
148 } Z3_lbool;
149 
158 typedef enum
159 {
163 
164 
179 typedef enum
180 {
189 
194 typedef enum
195 {
208 } Z3_sort_kind;
209 
222 typedef enum
223 {
231 } Z3_ast_kind;
232 
988 typedef enum {
989  // Basic
990  Z3_OP_TRUE = 0x100,
1003 
1004  // Arithmetic
1005  Z3_OP_ANUM = 0x200,
1023 
1024  // Arrays & Sets
1025  Z3_OP_STORE = 0x300,
1036 
1037  // Bit-vectors
1038  Z3_OP_BNUM = 0x400,
1045 
1051 
1052  // special functions to record the division by 0 cases
1053  // these are internal functions
1059 
1068 
1076 
1082 
1086 
1094 
1099 
1100  // Proofs
1101  Z3_OP_PR_UNDEF = 0x500,
1141 
1142  // Sequences
1157 
1158  // Auxiliary
1159  Z3_OP_LABEL = 0x700,
1161 
1162  // Datatypes
1167 
1168  // Pseudo Booleans
1172 
1173  // Floating-Point Arithmetic
1179 
1186 
1199 
1212 
1219 
1221 
1223 } Z3_decl_kind;
1224 
1239 typedef enum {
1247 } Z3_param_kind;
1248 
1249 #ifdef CorML3
1250 
1263 typedef enum {
1273 #endif
1274 
1284 typedef enum {
1290 
1291 
1292 #ifdef CorML4
1293 
1311 typedef enum
1312 {
1326 } Z3_error_code;
1327 
1328 #endif
1329 
1363 #ifdef Conly
1364 
1368 
1369 #endif
1370 #ifdef ML4only
1371 #include <error_handling.idl>
1372 #endif
1373 
1374 
1375 #ifdef CorML4
1376 
1385 typedef enum
1386 {
1391 } Z3_goal_prec;
1392 
1393 #endif
1394 
1397 #ifndef CAMLIDL
1398 #ifdef __cplusplus
1399 extern "C" {
1400 #endif // __cplusplus
1401 #else
1402 [pointer_default(ref)] interface Z3 {
1403 #endif // CAMLIDL
1404 
1405 #ifdef CorML3
1406 
1431  void Z3_API Z3_global_param_set(Z3_string param_id, Z3_string param_value);
1432 
1433 
1441  void Z3_API Z3_global_param_reset_all(void);
1442 
1455  Z3_bool_opt Z3_API Z3_global_param_get(Z3_string param_id, Z3_string_ptr param_value);
1456 
1463 
1498  Z3_config Z3_API Z3_mk_config(void);
1499 
1506  void Z3_API Z3_del_config(Z3_config c);
1507 
1516  void Z3_API Z3_set_param_value(Z3_config c, Z3_string param_id, Z3_string param_value);
1517 
1519 #endif
1520 
1525 
1548 #ifdef CorML3
1550 #endif
1551 #ifdef ML4only
1552 #include <mlx_mk_context_x.idl>
1553 #endif
1554 
1555 #ifdef Conly
1556 
1576 #endif
1577 
1578 #ifdef CorML3
1579 
1585  void Z3_API Z3_del_context(Z3_context c);
1586 #endif
1587 
1588 #ifdef Conly
1589 
1595  void Z3_API Z3_inc_ref(Z3_context c, Z3_ast a);
1596 
1603  void Z3_API Z3_dec_ref(Z3_context c, Z3_ast a);
1604 #endif
1605 
1612  void Z3_API Z3_update_param_value(Z3_context c, Z3_string param_id, Z3_string param_value);
1613 
1614 #ifdef CorML4
1615 
1620  void Z3_API Z3_interrupt(Z3_context c);
1621 #endif
1622 
1623 
1626 #ifdef CorML4
1627 
1631 
1641  Z3_params Z3_API Z3_mk_params(Z3_context c);
1642 
1643 #ifdef Conly
1644 
1648  void Z3_API Z3_params_inc_ref(Z3_context c, Z3_params p);
1649 
1654  void Z3_API Z3_params_dec_ref(Z3_context c, Z3_params p);
1655 #endif
1656 
1661  void Z3_API Z3_params_set_bool(Z3_context c, Z3_params p, Z3_symbol k, Z3_bool v);
1662 
1667  void Z3_API Z3_params_set_uint(Z3_context c, Z3_params p, Z3_symbol k, unsigned v);
1668 
1673  void Z3_API Z3_params_set_double(Z3_context c, Z3_params p, Z3_symbol k, double v);
1674 
1679  void Z3_API Z3_params_set_symbol(Z3_context c, Z3_params p, Z3_symbol k, Z3_symbol v);
1680 
1687 
1695 
1696 #endif
1697 
1700 #ifdef CorML4
1701 
1705 
1706 #ifdef Conly
1707 
1712 
1718 #endif
1719 
1725 
1730  unsigned Z3_API Z3_param_descrs_size(Z3_context c, Z3_param_descrs p);
1731 
1738  Z3_symbol Z3_API Z3_param_descrs_get_name(Z3_context c, Z3_param_descrs p, unsigned i);
1739 
1746 
1748 #endif
1749 
1754 
1755 #ifdef ML4only
1756 #include <mlx_mk_symbol.idl>
1757 #endif
1758 
1774  Z3_symbol Z3_API Z3_mk_int_symbol(Z3_context c, int i);
1775 
1784  Z3_symbol Z3_API Z3_mk_string_symbol(Z3_context c, Z3_string s);
1785 
1792 
1793 #ifdef ML4only
1794 #include <mlx_mk_sort.idl>
1795 #endif
1796 
1807  Z3_sort Z3_API Z3_mk_uninterpreted_sort(Z3_context c, Z3_symbol s);
1808 
1816 
1827  Z3_sort Z3_API Z3_mk_int_sort(Z3_context c);
1828 
1836 
1845  Z3_sort Z3_API Z3_mk_bv_sort(Z3_context c, unsigned sz);
1846 
1859  Z3_sort Z3_API Z3_mk_finite_domain_sort(Z3_context c, Z3_symbol name, unsigned __int64 size);
1860 
1871  Z3_sort Z3_API Z3_mk_array_sort(Z3_context c, Z3_sort domain, Z3_sort range);
1872 
1893  Z3_symbol mk_tuple_name,
1894  unsigned num_fields,
1895  Z3_symbol const field_names[],
1896  Z3_sort const field_sorts[],
1897  Z3_func_decl * mk_tuple_decl,
1898  Z3_func_decl proj_decl[]);
1899 
1926  Z3_symbol name,
1927  unsigned n,
1928  Z3_symbol const enum_names[],
1929  Z3_func_decl enum_consts[],
1930  Z3_func_decl enum_testers[]);
1931 
1953  Z3_symbol name,
1954  Z3_sort elem_sort,
1955  Z3_func_decl* nil_decl,
1956  Z3_func_decl* is_nil_decl,
1957  Z3_func_decl* cons_decl,
1958  Z3_func_decl* is_cons_decl,
1959  Z3_func_decl* head_decl,
1960  Z3_func_decl* tail_decl
1961  );
1962 
1963 BEGIN_MLAPI_EXCLUDE
1981  Z3_symbol name,
1982  Z3_symbol recognizer,
1983  unsigned num_fields,
1984  Z3_symbol const field_names[],
1985  Z3_sort_opt const sorts[],
1986  unsigned sort_refs[]
1987  );
1988 
1996  void Z3_API Z3_del_constructor(Z3_context c, Z3_constructor constr);
1997 
2009  Z3_symbol name,
2010  unsigned num_constructors,
2011  Z3_constructor constructors[]);
2012 
2013 
2023  unsigned num_constructors,
2024  Z3_constructor const constructors[]);
2025 
2036 
2047  void Z3_API Z3_mk_datatypes(Z3_context c,
2048  unsigned num_sorts,
2049  Z3_symbol const sort_names[],
2050  Z3_sort sorts[],
2051  Z3_constructor_list constructor_lists[]);
2052 
2064  void Z3_API Z3_query_constructor(Z3_context c,
2065  Z3_constructor constr,
2066  unsigned num_fields,
2067  Z3_func_decl* constructor,
2068  Z3_func_decl* tester,
2069  Z3_func_decl accessors[]);
2070 END_MLAPI_EXCLUDE
2071 
2078 
2098  Z3_func_decl Z3_API Z3_mk_func_decl(Z3_context c, Z3_symbol s,
2099  unsigned domain_size, Z3_sort const domain[],
2100  Z3_sort range);
2101 
2102 
2109  Z3_ast Z3_API Z3_mk_app(
2110  Z3_context c,
2111  Z3_func_decl d,
2112  unsigned num_args,
2113  Z3_ast const args[]);
2114 
2130  Z3_ast Z3_API Z3_mk_const(Z3_context c, Z3_symbol s, Z3_sort ty);
2131 
2144  unsigned domain_size, Z3_sort const domain[],
2145  Z3_sort range);
2146 
2161  Z3_ast Z3_API Z3_mk_fresh_const(Z3_context c, Z3_string prefix, Z3_sort ty);
2172  Z3_ast Z3_API Z3_mk_true(Z3_context c);
2173 
2178  Z3_ast Z3_API Z3_mk_false(Z3_context c);
2179 
2187  Z3_ast Z3_API Z3_mk_eq(Z3_context c, Z3_ast l, Z3_ast r);
2188 
2203  Z3_ast Z3_API Z3_mk_distinct(Z3_context c, unsigned num_args, Z3_ast const args[]);
2204 
2212  Z3_ast Z3_API Z3_mk_not(Z3_context c, Z3_ast a);
2213 
2223  Z3_ast Z3_API Z3_mk_ite(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_ast t3);
2224 
2232  Z3_ast Z3_API Z3_mk_iff(Z3_context c, Z3_ast t1, Z3_ast t2);
2233 
2241  Z3_ast Z3_API Z3_mk_implies(Z3_context c, Z3_ast t1, Z3_ast t2);
2242 
2250  Z3_ast Z3_API Z3_mk_xor(Z3_context c, Z3_ast t1, Z3_ast t2);
2251 
2262  Z3_ast Z3_API Z3_mk_and(Z3_context c, unsigned num_args, Z3_ast const args[]);
2263 
2274  Z3_ast Z3_API Z3_mk_or(Z3_context c, unsigned num_args, Z3_ast const args[]);
2291  Z3_ast Z3_API Z3_mk_add(Z3_context c, unsigned num_args, Z3_ast const args[]);
2292 
2304  Z3_ast Z3_API Z3_mk_mul(Z3_context c, unsigned num_args, Z3_ast const args[]);
2305 
2316  Z3_ast Z3_API Z3_mk_sub(Z3_context c, unsigned num_args, Z3_ast const args[]);
2317 
2325  Z3_ast Z3_API Z3_mk_unary_minus(Z3_context c, Z3_ast arg);
2326 
2336  Z3_ast Z3_API Z3_mk_div(Z3_context c, Z3_ast arg1, Z3_ast arg2);
2337 
2345  Z3_ast Z3_API Z3_mk_mod(Z3_context c, Z3_ast arg1, Z3_ast arg2);
2346 
2354  Z3_ast Z3_API Z3_mk_rem(Z3_context c, Z3_ast arg1, Z3_ast arg2);
2355 
2362  Z3_ast Z3_API Z3_mk_power(Z3_context c, Z3_ast arg1, Z3_ast arg2);
2363 
2371  Z3_ast Z3_API Z3_mk_lt(Z3_context c, Z3_ast t1, Z3_ast t2);
2372 
2380  Z3_ast Z3_API Z3_mk_le(Z3_context c, Z3_ast t1, Z3_ast t2);
2381 
2389  Z3_ast Z3_API Z3_mk_gt(Z3_context c, Z3_ast t1, Z3_ast t2);
2390 
2398  Z3_ast Z3_API Z3_mk_ge(Z3_context c, Z3_ast t1, Z3_ast t2);
2399 
2417  Z3_ast Z3_API Z3_mk_int2real(Z3_context c, Z3_ast t1);
2418 
2430  Z3_ast Z3_API Z3_mk_real2int(Z3_context c, Z3_ast t1);
2431 
2440  Z3_ast Z3_API Z3_mk_is_int(Z3_context c, Z3_ast t1);
2454  Z3_ast Z3_API Z3_mk_bvnot(Z3_context c, Z3_ast t1);
2455 
2463  Z3_ast Z3_API Z3_mk_bvredand(Z3_context c, Z3_ast t1);
2464 
2472  Z3_ast Z3_API Z3_mk_bvredor(Z3_context c, Z3_ast t1);
2473 
2481  Z3_ast Z3_API Z3_mk_bvand(Z3_context c, Z3_ast t1, Z3_ast t2);
2482 
2490  Z3_ast Z3_API Z3_mk_bvor(Z3_context c, Z3_ast t1, Z3_ast t2);
2491 
2499  Z3_ast Z3_API Z3_mk_bvxor(Z3_context c, Z3_ast t1, Z3_ast t2);
2500 
2508  Z3_ast Z3_API Z3_mk_bvnand(Z3_context c, Z3_ast t1, Z3_ast t2);
2509 
2517  Z3_ast Z3_API Z3_mk_bvnor(Z3_context c, Z3_ast t1, Z3_ast t2);
2518 
2526  Z3_ast Z3_API Z3_mk_bvxnor(Z3_context c, Z3_ast t1, Z3_ast t2);
2527 
2535  Z3_ast Z3_API Z3_mk_bvneg(Z3_context c, Z3_ast t1);
2536 
2544  Z3_ast Z3_API Z3_mk_bvadd(Z3_context c, Z3_ast t1, Z3_ast t2);
2545 
2553  Z3_ast Z3_API Z3_mk_bvsub(Z3_context c, Z3_ast t1, Z3_ast t2);
2554 
2562  Z3_ast Z3_API Z3_mk_bvmul(Z3_context c, Z3_ast t1, Z3_ast t2);
2563 
2575  Z3_ast Z3_API Z3_mk_bvudiv(Z3_context c, Z3_ast t1, Z3_ast t2);
2576 
2592  Z3_ast Z3_API Z3_mk_bvsdiv(Z3_context c, Z3_ast t1, Z3_ast t2);
2593 
2605  Z3_ast Z3_API Z3_mk_bvurem(Z3_context c, Z3_ast t1, Z3_ast t2);
2606 
2621  Z3_ast Z3_API Z3_mk_bvsrem(Z3_context c, Z3_ast t1, Z3_ast t2);
2622 
2634  Z3_ast Z3_API Z3_mk_bvsmod(Z3_context c, Z3_ast t1, Z3_ast t2);
2635 
2643  Z3_ast Z3_API Z3_mk_bvult(Z3_context c, Z3_ast t1, Z3_ast t2);
2644 
2660  Z3_ast Z3_API Z3_mk_bvslt(Z3_context c, Z3_ast t1, Z3_ast t2);
2661 
2669  Z3_ast Z3_API Z3_mk_bvule(Z3_context c, Z3_ast t1, Z3_ast t2);
2670 
2678  Z3_ast Z3_API Z3_mk_bvsle(Z3_context c, Z3_ast t1, Z3_ast t2);
2679 
2687  Z3_ast Z3_API Z3_mk_bvuge(Z3_context c, Z3_ast t1, Z3_ast t2);
2688 
2696  Z3_ast Z3_API Z3_mk_bvsge(Z3_context c, Z3_ast t1, Z3_ast t2);
2697 
2705  Z3_ast Z3_API Z3_mk_bvugt(Z3_context c, Z3_ast t1, Z3_ast t2);
2706 
2714  Z3_ast Z3_API Z3_mk_bvsgt(Z3_context c, Z3_ast t1, Z3_ast t2);
2715 
2726  Z3_ast Z3_API Z3_mk_concat(Z3_context c, Z3_ast t1, Z3_ast t2);
2727 
2737  Z3_ast Z3_API Z3_mk_extract(Z3_context c, unsigned high, unsigned low, Z3_ast t1);
2738 
2748  Z3_ast Z3_API Z3_mk_sign_ext(Z3_context c, unsigned i, Z3_ast t1);
2749 
2759  Z3_ast Z3_API Z3_mk_zero_ext(Z3_context c, unsigned i, Z3_ast t1);
2760 
2768  Z3_ast Z3_API Z3_mk_repeat(Z3_context c, unsigned i, Z3_ast t1);
2769 
2784  Z3_ast Z3_API Z3_mk_bvshl(Z3_context c, Z3_ast t1, Z3_ast t2);
2785 
2800  Z3_ast Z3_API Z3_mk_bvlshr(Z3_context c, Z3_ast t1, Z3_ast t2);
2801 
2817  Z3_ast Z3_API Z3_mk_bvashr(Z3_context c, Z3_ast t1, Z3_ast t2);
2818 
2826  Z3_ast Z3_API Z3_mk_rotate_left(Z3_context c, unsigned i, Z3_ast t1);
2827 
2835  Z3_ast Z3_API Z3_mk_rotate_right(Z3_context c, unsigned i, Z3_ast t1);
2836 
2845 
2854 
2866  Z3_ast Z3_API Z3_mk_int2bv(Z3_context c, unsigned n, Z3_ast t1);
2867 
2883  Z3_ast Z3_API Z3_mk_bv2int(Z3_context c,Z3_ast t1, Z3_bool is_signed);
2884 
2893  Z3_ast Z3_API Z3_mk_bvadd_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_bool is_signed);
2894 
2904 
2914 
2923  Z3_ast Z3_API Z3_mk_bvsub_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_bool is_signed);
2924 
2934 
2944 
2953  Z3_ast Z3_API Z3_mk_bvmul_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_bool is_signed);
2954 
2984  Z3_ast Z3_API Z3_mk_select(Z3_context c, Z3_ast a, Z3_ast i);
2985 
3002  Z3_ast Z3_API Z3_mk_store(Z3_context c, Z3_ast a, Z3_ast i, Z3_ast v);
3003 
3015  Z3_ast Z3_API Z3_mk_const_array(Z3_context c, Z3_sort domain, Z3_ast v);
3016 
3030  Z3_ast Z3_API Z3_mk_map(Z3_context c, Z3_func_decl f, unsigned n, Z3_ast const* args);
3031 
3041  Z3_ast Z3_API Z3_mk_array_default(Z3_context c, Z3_ast array);
3052  Z3_sort Z3_API Z3_mk_set_sort(Z3_context c, Z3_sort ty);
3053 
3058  Z3_ast Z3_API Z3_mk_empty_set(Z3_context c, Z3_sort domain);
3059 
3064  Z3_ast Z3_API Z3_mk_full_set(Z3_context c, Z3_sort domain);
3065 
3072  Z3_ast Z3_API Z3_mk_set_add(Z3_context c, Z3_ast set, Z3_ast elem);
3073 
3080  Z3_ast Z3_API Z3_mk_set_del(Z3_context c, Z3_ast set, Z3_ast elem);
3081 
3086  Z3_ast Z3_API Z3_mk_set_union(Z3_context c, unsigned num_args, Z3_ast const args[]);
3087 
3092  Z3_ast Z3_API Z3_mk_set_intersect(Z3_context c, unsigned num_args, Z3_ast const args[]);
3093 
3098  Z3_ast Z3_API Z3_mk_set_difference(Z3_context c, Z3_ast arg1, Z3_ast arg2);
3099 
3105 
3112  Z3_ast Z3_API Z3_mk_set_member(Z3_context c, Z3_ast elem, Z3_ast set);
3113 
3118  Z3_ast Z3_API Z3_mk_set_subset(Z3_context c, Z3_ast arg1, Z3_ast arg2);
3125 
3126 #ifdef ML4only
3127 #include <mlx_mk_numeral.idl>
3128 #endif
3129 
3145  Z3_ast Z3_API Z3_mk_numeral(Z3_context c, Z3_string numeral, Z3_sort ty);
3146 
3161  Z3_ast Z3_API Z3_mk_real(Z3_context c, int num, int den);
3162 
3172  Z3_ast Z3_API Z3_mk_int(Z3_context c, int v, Z3_sort ty);
3173 
3174 #ifdef Conly
3175 
3184  Z3_ast Z3_API Z3_mk_unsigned_int(Z3_context c, unsigned v, Z3_sort ty);
3185 #endif
3186 
3196  Z3_ast Z3_API Z3_mk_int64(Z3_context c, __int64 v, Z3_sort ty);
3197 
3198 #ifdef Conly
3199 
3208  Z3_ast Z3_API Z3_mk_unsigned_int64(Z3_context c, unsigned __int64 v, Z3_sort ty);
3209 #endif
3210 
3217 
3237  Z3_pattern Z3_API Z3_mk_pattern(
3238  Z3_context c,
3239  unsigned num_patterns, Z3_ast const terms[]);
3240 
3269  Z3_ast Z3_API Z3_mk_bound(Z3_context c, unsigned index, Z3_sort ty);
3270 
3303  Z3_ast Z3_API Z3_mk_forall(Z3_context c, unsigned weight,
3304  unsigned num_patterns, Z3_pattern const patterns[],
3305  unsigned num_decls, Z3_sort const sorts[],
3306  Z3_symbol const decl_names[],
3307  Z3_ast body);
3308 
3318  Z3_ast Z3_API Z3_mk_exists(Z3_context c, unsigned weight,
3319  unsigned num_patterns, Z3_pattern const patterns[],
3320  unsigned num_decls, Z3_sort const sorts[],
3321  Z3_symbol const decl_names[],
3322  Z3_ast body);
3323 
3344  Z3_ast Z3_API Z3_mk_quantifier(
3345  Z3_context c,
3346  Z3_bool is_forall,
3347  unsigned weight,
3348  unsigned num_patterns, Z3_pattern const patterns[],
3349  unsigned num_decls, Z3_sort const sorts[],
3350  Z3_symbol const decl_names[],
3351  Z3_ast body);
3352 
3353 
3377  Z3_ast Z3_API Z3_mk_quantifier_ex(
3378  Z3_context c,
3379  Z3_bool is_forall,
3380  unsigned weight,
3381  Z3_symbol quantifier_id,
3382  Z3_symbol skolem_id,
3383  unsigned num_patterns, Z3_pattern const patterns[],
3384  unsigned num_no_patterns, Z3_ast const no_patterns[],
3385  unsigned num_decls, Z3_sort const sorts[],
3386  Z3_symbol const decl_names[],
3387  Z3_ast body);
3388 
3406  Z3_ast Z3_API Z3_mk_forall_const(
3407  Z3_context c,
3408  unsigned weight,
3409  unsigned num_bound,
3410  Z3_app const bound[],
3411  unsigned num_patterns,
3412  Z3_pattern const patterns[],
3413  Z3_ast body
3414  );
3415 
3435  Z3_ast Z3_API Z3_mk_exists_const(
3436  Z3_context c,
3437  unsigned weight,
3438  unsigned num_bound,
3439  Z3_app const bound[],
3440  unsigned num_patterns,
3441  Z3_pattern const patterns[],
3442  Z3_ast body
3443  );
3444 
3452  Z3_context c,
3453  Z3_bool is_forall,
3454  unsigned weight,
3455  unsigned num_bound, Z3_app const bound[],
3456  unsigned num_patterns, Z3_pattern const patterns[],
3457  Z3_ast body
3458  );
3459 
3460 
3461 
3469  Z3_context c,
3470  Z3_bool is_forall,
3471  unsigned weight,
3472  Z3_symbol quantifier_id,
3473  Z3_symbol skolem_id,
3474  unsigned num_bound, Z3_app const bound[],
3475  unsigned num_patterns, Z3_pattern const patterns[],
3476  unsigned num_no_patterns, Z3_ast const no_patterns[],
3477  Z3_ast body
3478  );
3479 
3486 
3491 #ifdef ML4only
3492 #include <mlx_symbol_refine.idl>
3493 #endif
3494 
3505  Z3_symbol_kind Z3_API Z3_get_symbol_kind(Z3_context c, Z3_symbol s);
3506 
3516  int Z3_API Z3_get_symbol_int(Z3_context c, Z3_symbol s);
3517 
3531  Z3_string Z3_API Z3_get_symbol_string(Z3_context c, Z3_symbol s);
3532 
3533 
3538 #ifdef ML4only
3539 #include <mlx_sort_refine.idl>
3540 #endif
3541 
3546  Z3_symbol Z3_API Z3_get_sort_name(Z3_context c, Z3_sort d);
3547 
3553  unsigned Z3_API Z3_get_sort_id(Z3_context c, Z3_sort s);
3554 
3564  Z3_ast Z3_API Z3_sort_to_ast(Z3_context c, Z3_sort s);
3565 
3571  Z3_bool Z3_API Z3_is_eq_sort(Z3_context c, Z3_sort s1, Z3_sort s2);
3572 
3580 
3581 
3592  unsigned Z3_API Z3_get_bv_sort_size(Z3_context c, Z3_sort t);
3593 
3600  Z3_bool_opt Z3_API Z3_get_finite_domain_sort_size(Z3_context c, Z3_sort s, unsigned __int64* r);
3601 
3602 
3614 
3626 
3627 
3640 
3651  unsigned Z3_API Z3_get_tuple_sort_num_fields(Z3_context c, Z3_sort t);
3652 
3666 
3677  unsigned Z3_API Z3_get_datatype_sort_num_constructors(
3678  Z3_context c, Z3_sort t);
3679 
3692  Z3_context c, Z3_sort t, unsigned idx);
3693 
3706  Z3_context c, Z3_sort t, unsigned idx);
3707 
3721  Z3_context c, Z3_sort t, unsigned idx_c, unsigned idx_a);
3722 
3742  Z3_context c, Z3_func_decl field_access,
3743  Z3_ast t, Z3_ast value);
3744 
3753  unsigned Z3_API Z3_get_relation_arity(Z3_context c, Z3_sort s);
3754 
3764  Z3_sort Z3_API Z3_get_relation_column(Z3_context c, Z3_sort s, unsigned col);
3765 
3766 
3774  Z3_ast Z3_API Z3_mk_atmost(Z3_context c, unsigned num_args,
3775  Z3_ast const args[], unsigned k);
3776 
3784  Z3_ast Z3_API Z3_mk_pble(Z3_context c, unsigned num_args,
3785  Z3_ast const args[], int coeffs[],
3786  int k);
3787 
3798 
3805 
3811  unsigned Z3_API Z3_get_func_decl_id(Z3_context c, Z3_func_decl f);
3812 
3817  Z3_symbol Z3_API Z3_get_decl_name(Z3_context c, Z3_func_decl d);
3818 
3824 
3831  unsigned Z3_API Z3_get_domain_size(Z3_context c, Z3_func_decl d);
3832 
3839  unsigned Z3_API Z3_get_arity(Z3_context c, Z3_func_decl d);
3840 
3850  Z3_sort Z3_API Z3_get_domain(Z3_context c, Z3_func_decl d, unsigned i);
3851 
3852 #ifdef ML4only
3853 #include <mlx_get_domains.idl>
3854 #endif
3855 
3865 
3870  unsigned Z3_API Z3_get_decl_num_parameters(Z3_context c, Z3_func_decl d);
3871 
3881 
3888  int Z3_API Z3_get_decl_int_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
3889 
3896  double Z3_API Z3_get_decl_double_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
3897 
3904  Z3_symbol Z3_API Z3_get_decl_symbol_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
3905 
3912  Z3_sort Z3_API Z3_get_decl_sort_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
3913 
3920  Z3_ast Z3_API Z3_get_decl_ast_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
3921 
3929 
3937 
3947  Z3_ast Z3_API Z3_app_to_ast(Z3_context c, Z3_app a);
3948 
3954 
3961  unsigned Z3_API Z3_get_app_num_args(Z3_context c, Z3_app a);
3962 
3970  Z3_ast Z3_API Z3_get_app_arg(Z3_context c, Z3_app a, unsigned i);
3971 
3972 #ifdef ML4only
3973 #include <mlx_get_app_args.idl>
3974 #endif
3975 
3976 
3981 #ifdef ML4only
3982 #include <mlx_term_refine.idl>
3983 #endif
3984 
3990  Z3_bool Z3_API Z3_is_eq_ast(Z3_context c, Z3_ast t1, Z3_ast t2);
3991 
4003  unsigned Z3_API Z3_get_ast_id(Z3_context c, Z3_ast t);
4004 
4012  unsigned Z3_API Z3_get_ast_hash(Z3_context c, Z3_ast a);
4013 
4020  Z3_sort Z3_API Z3_get_sort(Z3_context c, Z3_ast a);
4021 
4027 
4033 
4039 
4042  Z3_bool Z3_API Z3_is_app(Z3_context c, Z3_ast a);
4043 
4047 
4053 
4060  Z3_app Z3_API Z3_to_app(Z3_context c, Z3_ast a);
4061 
4069 
4070 
4075 #ifdef ML4only
4076 #include <mlx_numeral_refine.idl>
4077 #endif
4078 
4090 
4098  Z3_string Z3_API Z3_get_numeral_decimal_string(Z3_context c, Z3_ast a, unsigned precision);
4099 
4107 
4115 
4129  Z3_bool Z3_API Z3_get_numeral_small(Z3_context c, Z3_ast a, __int64* num, __int64* den);
4130 
4141  Z3_bool Z3_API Z3_get_numeral_int(Z3_context c, Z3_ast v, int* i);
4142 
4143 #ifdef Conly
4144 
4154  Z3_bool Z3_API Z3_get_numeral_uint(Z3_context c, Z3_ast v, unsigned* u);
4155 #endif
4156 
4157 #ifdef Conly
4158 
4168  Z3_bool Z3_API Z3_get_numeral_uint64(Z3_context c, Z3_ast v, unsigned __int64* u);
4169 #endif
4170 
4182 
4194 
4203  Z3_ast Z3_API Z3_get_algebraic_number_lower(Z3_context c, Z3_ast a, unsigned precision);
4204 
4213  Z3_ast Z3_API Z3_get_algebraic_number_upper(Z3_context c, Z3_ast a, unsigned precision);
4214 
4215 
4226 
4227 #ifdef ML4only
4228 #include <mlx_get_pattern_terms.idl>
4229 #endif
4230 
4235  unsigned Z3_API Z3_get_pattern_num_terms(Z3_context c, Z3_pattern p);
4236 
4241  Z3_ast Z3_API Z3_get_pattern(Z3_context c, Z3_pattern p, unsigned idx);
4242 
4243 
4254  unsigned Z3_API Z3_get_index_value(Z3_context c, Z3_ast a);
4255 
4263 
4270  unsigned Z3_API Z3_get_quantifier_weight(Z3_context c, Z3_ast a);
4271 
4278  unsigned Z3_API Z3_get_quantifier_num_patterns(Z3_context c, Z3_ast a);
4279 
4286  Z3_pattern Z3_API Z3_get_quantifier_pattern_ast(Z3_context c, Z3_ast a, unsigned i);
4287 
4294  unsigned Z3_API Z3_get_quantifier_num_no_patterns(Z3_context c, Z3_ast a);
4295 
4302  Z3_ast Z3_API Z3_get_quantifier_no_pattern_ast(Z3_context c, Z3_ast a, unsigned i);
4303 
4310  unsigned Z3_API Z3_get_quantifier_num_bound(Z3_context c, Z3_ast a);
4311 
4318  Z3_symbol Z3_API Z3_get_quantifier_bound_name(Z3_context c, Z3_ast a, unsigned i);
4319 
4326  Z3_sort Z3_API Z3_get_quantifier_bound_sort(Z3_context c, Z3_ast a, unsigned i);
4327 
4335 
4336 
4347  Z3_ast Z3_API Z3_simplify(Z3_context c, Z3_ast a);
4348 
4349 #ifdef CorML4
4350 
4359 
4365 
4371 #endif
4372 
4379 
4387  Z3_ast Z3_API Z3_update_term(Z3_context c, Z3_ast a, unsigned num_args, Z3_ast const args[]);
4388 
4395  Z3_ast Z3_API Z3_substitute(Z3_context c,
4396  Z3_ast a,
4397  unsigned num_exprs,
4398  Z3_ast const from[],
4399  Z3_ast const to[]);
4400 
4407  Z3_ast a,
4408  unsigned num_exprs,
4409  Z3_ast const to[]);
4410 
4411 #ifdef CorML4
4412 
4418  Z3_ast Z3_API Z3_translate(Z3_context source, Z3_ast a, Z3_context target);
4419 #endif
4420 
4423 #ifdef CorML4
4424 
4428 
4429 #ifdef ML4only
4430 #include <mlx_model.idl>
4431 #endif
4432 #ifdef Conly
4433 
4437  void Z3_API Z3_model_inc_ref(Z3_context c, Z3_model m);
4438 
4443  void Z3_API Z3_model_dec_ref(Z3_context c, Z3_model m);
4444 #endif
4445 
4465  Z3_bool_opt Z3_API Z3_model_eval(Z3_context c, Z3_model m, Z3_ast t, Z3_bool model_completion, Z3_ast * v);
4466 
4481 
4487 
4501 
4508  unsigned Z3_API Z3_model_get_num_consts(Z3_context c, Z3_model m);
4509 
4519  Z3_func_decl Z3_API Z3_model_get_const_decl(Z3_context c, Z3_model m, unsigned i);
4520 
4528  unsigned Z3_API Z3_model_get_num_funcs(Z3_context c, Z3_model m);
4529 
4539  Z3_func_decl Z3_API Z3_model_get_func_decl(Z3_context c, Z3_model m, unsigned i);
4540 
4552  unsigned Z3_API Z3_model_get_num_sorts(Z3_context c, Z3_model m);
4553 
4563  Z3_sort Z3_API Z3_model_get_sort(Z3_context c, Z3_model m, unsigned i);
4564 
4573 
4584  Z3_bool Z3_API Z3_is_as_array(Z3_context c, Z3_ast a);
4585 
4593 
4594 #ifdef Conly
4595 
4600 
4606 #endif
4607 
4617 
4628 
4637 
4642  unsigned Z3_API Z3_func_interp_get_arity(Z3_context c, Z3_func_interp f);
4643 
4644 #ifdef Conly
4645 
4650 
4656 #endif
4657 
4668 
4675  unsigned Z3_API Z3_func_entry_get_num_args(Z3_context c, Z3_func_entry e);
4676 
4685  Z3_ast Z3_API Z3_func_entry_get_arg(Z3_context c, Z3_func_entry e, unsigned i);
4686 
4688 #endif // CorML4
4689 
4694 
4699  Z3_bool Z3_API Z3_open_log(Z3_string filename);
4700 
4709  void Z3_API Z3_append_log(Z3_string string);
4710 
4715  void Z3_API Z3_close_log(void);
4716 
4724  void Z3_API Z3_toggle_warning_messages(Z3_bool enabled);
4725 
4732 
4749  void Z3_API Z3_set_ast_print_mode(Z3_context c, Z3_ast_print_mode mode);
4750 
4762 
4766 
4770 
4774 
4784 
4803  Z3_string name,
4804  Z3_string logic,
4805  Z3_string status,
4806  Z3_string attributes,
4807  unsigned num_assumptions,
4808  Z3_ast const assumptions[],
4809  Z3_ast formula);
4810 
4817 
4827  Z3_string str,
4828  unsigned num_sorts,
4829  Z3_symbol const sort_names[],
4830  Z3_sort const sorts[],
4831  unsigned num_decls,
4832  Z3_symbol const decl_names[],
4833  Z3_func_decl const decls[]);
4834 
4840  Z3_string file_name,
4841  unsigned num_sorts,
4842  Z3_symbol const sort_names[],
4843  Z3_sort const sorts[],
4844  unsigned num_decls,
4845  Z3_symbol const decl_names[],
4846  Z3_func_decl const decls[]);
4847 
4848 #ifdef ML4only
4849 #include <mlx_parse_smtlib.idl>
4850 #endif
4851 
4870  void Z3_API Z3_parse_smtlib_string(Z3_context c,
4871  Z3_string str,
4872  unsigned num_sorts,
4873  Z3_symbol const sort_names[],
4874  Z3_sort const sorts[],
4875  unsigned num_decls,
4876  Z3_symbol const decl_names[],
4877  Z3_func_decl const decls[]
4878  );
4879 
4884  void Z3_API Z3_parse_smtlib_file(Z3_context c,
4885  Z3_string file_name,
4886  unsigned num_sorts,
4887  Z3_symbol const sort_names[],
4888  Z3_sort const sorts[],
4889  unsigned num_decls,
4890  Z3_symbol const decl_names[],
4891  Z3_func_decl const decls[]
4892  );
4893 
4898  unsigned Z3_API Z3_get_smtlib_num_formulas(Z3_context c);
4899 
4907  Z3_ast Z3_API Z3_get_smtlib_formula(Z3_context c, unsigned i);
4908 
4913  unsigned Z3_API Z3_get_smtlib_num_assumptions(Z3_context c);
4914 
4922  Z3_ast Z3_API Z3_get_smtlib_assumption(Z3_context c, unsigned i);
4923 
4928  unsigned Z3_API Z3_get_smtlib_num_decls(Z3_context c);
4929 
4937  Z3_func_decl Z3_API Z3_get_smtlib_decl(Z3_context c, unsigned i);
4938 
4943  unsigned Z3_API Z3_get_smtlib_num_sorts(Z3_context c);
4944 
4952  Z3_sort Z3_API Z3_get_smtlib_sort(Z3_context c, unsigned i);
4953 
4954 BEGIN_MLAPI_EXCLUDE
4961 END_MLAPI_EXCLUDE
4962 
4965 #ifdef CorML4
4966 
4970 
4971 #ifndef SAFE_ERRORS
4972 
4982 
4996 #endif
4997 
5002  void Z3_API Z3_set_error(Z3_context c, Z3_error_code e);
5003 
5004 #ifdef Conly
5005 
5012 #endif
5013 
5014 BEGIN_MLAPI_EXCLUDE
5020 END_MLAPI_EXCLUDE
5021 #ifdef ML4only
5022 #include <mlx_get_error_msg.idl>
5023 #endif
5024 
5025 
5027 #endif
5028 
5033 
5038  void Z3_API Z3_get_version(unsigned * major, unsigned * minor, unsigned * build_number, unsigned * revision_number);
5039 
5045  void Z3_API Z3_enable_trace(Z3_string tag);
5046 
5052  void Z3_API Z3_disable_trace(Z3_string tag);
5053 
5054 #ifdef CorML3
5055 
5064  void Z3_API Z3_reset_memory(void);
5065 #endif
5066 
5067 #ifdef CorML3
5068 
5075  void Z3_API Z3_finalize_memory(void);
5076 #endif
5077 
5080 #ifdef CorML3
5081 
5085 
5086 #ifdef Conly
5087 
5088  //
5089  // callbacks and void* don't work with CAMLIDL.
5090  //
5092 
5094 
5096 
5098 
5100 
5102 
5104 
5106 
5107 #endif
5108 
5109 #ifdef Conly
5110 
5118  Z3_theory Z3_API Z3_mk_theory(Z3_context c, Z3_string th_name, Z3_theory_data data);
5119 
5126 #endif
5127 
5131  Z3_sort Z3_API Z3_theory_mk_sort(Z3_context c, Z3_theory t, Z3_symbol s);
5132 
5136  Z3_ast Z3_API Z3_theory_mk_value(Z3_context c, Z3_theory t, Z3_symbol n, Z3_sort s);
5137 
5141  Z3_ast Z3_API Z3_theory_mk_constant(Z3_context c, Z3_theory t, Z3_symbol n, Z3_sort s);
5142 
5146  Z3_func_decl Z3_API Z3_theory_mk_func_decl(Z3_context c, Z3_theory t, Z3_symbol n,
5147  unsigned domain_size, Z3_sort const domain[],
5148  Z3_sort range);
5149 
5154 
5155 
5156 #ifdef Conly
5157 
5168 
5183 
5198 
5213 
5230 
5248 
5257 
5268 
5279 
5288 
5298 
5312 
5323 
5334 
5344 
5355 
5356 #endif
5357 
5372  void Z3_API Z3_theory_assert_axiom(Z3_theory t, Z3_ast ax);
5373 
5381  void Z3_API Z3_theory_assume_eq(Z3_theory t, Z3_ast lhs, Z3_ast rhs);
5382 
5390 
5395 
5411 
5415  unsigned Z3_API Z3_theory_get_num_parents(Z3_theory t, Z3_ast n);
5416 
5421  Z3_ast Z3_API Z3_theory_get_parent(Z3_theory t, Z3_ast n, unsigned i);
5422 
5427 
5432 
5438  unsigned Z3_API Z3_theory_get_num_elems(Z3_theory t);
5439 
5445  Z3_ast Z3_API Z3_theory_get_elem(Z3_theory t, unsigned i);
5446 
5452  unsigned Z3_API Z3_theory_get_num_apps(Z3_theory t);
5453 
5459  Z3_ast Z3_API Z3_theory_get_app(Z3_theory t, unsigned i);
5460 
5463 #endif
5464 
5465 #ifdef CorML4
5466 
5470 
5479 
5480 #ifdef Conly
5481 
5486 
5492 #endif
5493 
5505  void Z3_API Z3_fixedpoint_add_rule(Z3_context c,Z3_fixedpoint d, Z3_ast rule, Z3_symbol name);
5506 
5524  Z3_func_decl r,
5525  unsigned num_args, unsigned args[]);
5526 
5534  void Z3_API Z3_fixedpoint_assert(Z3_context c,Z3_fixedpoint d, Z3_ast axiom);
5535 
5551 
5565  unsigned num_relations, Z3_func_decl const relations[]);
5566 
5580 
5588 
5594  void Z3_API Z3_fixedpoint_update_rule(Z3_context c, Z3_fixedpoint d, Z3_ast a, Z3_symbol name);
5595 
5605 
5616 
5628  void Z3_API Z3_fixedpoint_add_cover(Z3_context c, Z3_fixedpoint d, int level, Z3_func_decl pred, Z3_ast property);
5629 
5635 
5644 
5654  Z3_context c,
5655  Z3_fixedpoint d,
5656  Z3_func_decl f,
5657  unsigned num_relations,
5658  Z3_symbol const relation_kinds[]);
5659 
5665  Z3_context c,
5666  Z3_fixedpoint f);
5667 
5673  Z3_context c,
5674  Z3_fixedpoint f);
5675 
5681 
5687 
5693 
5703  Z3_context c,
5704  Z3_fixedpoint f,
5705  unsigned num_queries,
5706  Z3_ast queries[]);
5707 
5719  Z3_context c,
5720  Z3_fixedpoint f,
5721  Z3_string s);
5722 
5734  Z3_context c,
5735  Z3_fixedpoint f,
5736  Z3_string s);
5737 
5747  void Z3_API Z3_fixedpoint_push(Z3_context c,Z3_fixedpoint d);
5748 
5757  void Z3_API Z3_fixedpoint_pop(Z3_context c,Z3_fixedpoint d);
5758 
5759 #ifdef Conly
5760 
5766  void*, Z3_func_decl,
5767  unsigned, Z3_ast const [],
5768  unsigned, Z3_ast const []);
5769 
5771  void*, Z3_func_decl,
5772  unsigned, Z3_ast const [],
5773  Z3_ast*);
5774 
5775 
5779  void Z3_API Z3_fixedpoint_init(Z3_context c,Z3_fixedpoint d, void* state);
5780 
5788 
5795 
5796 #endif
5797 #endif
5798 
5799 
5800 
5801 #ifdef CorML4
5802 
5806 
5815 
5816 #ifdef Conly
5817 
5821  void Z3_API Z3_optimize_inc_ref(Z3_context c,Z3_optimize d);
5822 
5827  void Z3_API Z3_optimize_dec_ref(Z3_context c,Z3_optimize d);
5828 #endif
5829 
5834  void Z3_API Z3_optimize_assert(Z3_context c, Z3_optimize o, Z3_ast a);
5835 
5836 
5846  unsigned Z3_API Z3_optimize_assert_soft(Z3_context c, Z3_optimize o, Z3_ast a, Z3_string weight, Z3_symbol id);
5847 
5848 
5855  unsigned Z3_API Z3_optimize_maximize(Z3_context c, Z3_optimize o, Z3_ast t);
5856 
5864  unsigned Z3_API Z3_optimize_minimize(Z3_context c, Z3_optimize o, Z3_ast t);
5865 
5866 
5876  void Z3_API Z3_optimize_push(Z3_context c,Z3_optimize d);
5877 
5886  void Z3_API Z3_optimize_pop(Z3_context c,Z3_optimize d);
5887 
5895 
5896 
5904 
5914 
5924 
5933 
5942  Z3_ast Z3_API Z3_optimize_get_lower(Z3_context c, Z3_optimize o, unsigned idx);
5943 
5952  Z3_ast Z3_API Z3_optimize_get_upper(Z3_context c, Z3_optimize o, unsigned idx);
5953 
5961  Z3_context c,
5962  Z3_optimize o);
5963 
5964 
5970 
5976 
5977 
5978 #endif
5979 
5980 #ifdef CorML4
5981 
5987 
5996 
5997 #ifdef Conly
5998 
6003 
6009 #endif
6010 
6015  unsigned Z3_API Z3_ast_vector_size(Z3_context c, Z3_ast_vector v);
6016 
6023  Z3_ast Z3_API Z3_ast_vector_get(Z3_context c, Z3_ast_vector v, unsigned i);
6024 
6031  void Z3_API Z3_ast_vector_set(Z3_context c, Z3_ast_vector v, unsigned i, Z3_ast a);
6032 
6037  void Z3_API Z3_ast_vector_resize(Z3_context c, Z3_ast_vector v, unsigned n);
6038 
6043  void Z3_API Z3_ast_vector_push(Z3_context c, Z3_ast_vector v, Z3_ast a);
6044 
6050 
6056 
6063 
6072 
6073 #ifdef Conly
6074 
6078  void Z3_API Z3_ast_map_inc_ref(Z3_context c, Z3_ast_map m);
6079 
6084  void Z3_API Z3_ast_map_dec_ref(Z3_context c, Z3_ast_map m);
6085 #endif
6086 
6092 
6100 
6105  void Z3_API Z3_ast_map_insert(Z3_context c, Z3_ast_map m, Z3_ast k, Z3_ast v);
6106 
6111  void Z3_API Z3_ast_map_erase(Z3_context c, Z3_ast_map m, Z3_ast k);
6112 
6117  void Z3_API Z3_ast_map_reset(Z3_context c, Z3_ast_map m);
6118 
6123  unsigned Z3_API Z3_ast_map_size(Z3_context c, Z3_ast_map m);
6124 
6130 
6136 
6143 
6160  Z3_goal Z3_API Z3_mk_goal(Z3_context c, Z3_bool models, Z3_bool unsat_cores, Z3_bool proofs);
6161 
6162 #ifdef Conly
6163 
6167  void Z3_API Z3_goal_inc_ref(Z3_context c, Z3_goal g);
6168 
6173  void Z3_API Z3_goal_dec_ref(Z3_context c, Z3_goal g);
6174 #endif
6175 
6183 
6188  void Z3_API Z3_goal_assert(Z3_context c, Z3_goal g, Z3_ast a);
6189 
6195 
6200  unsigned Z3_API Z3_goal_depth(Z3_context c, Z3_goal g);
6201 
6206  void Z3_API Z3_goal_reset(Z3_context c, Z3_goal g);
6207 
6212  unsigned Z3_API Z3_goal_size(Z3_context c, Z3_goal g);
6213 
6220  Z3_ast Z3_API Z3_goal_formula(Z3_context c, Z3_goal g, unsigned idx);
6221 
6226  unsigned Z3_API Z3_goal_num_exprs(Z3_context c, Z3_goal g);
6227 
6233 
6239 
6244  Z3_goal Z3_API Z3_goal_translate(Z3_context source, Z3_goal g, Z3_context target);
6245 
6251 
6258 
6267  Z3_tactic Z3_API Z3_mk_tactic(Z3_context c, Z3_string name);
6268 
6269 #ifdef Conly
6270 
6274  void Z3_API Z3_tactic_inc_ref(Z3_context c, Z3_tactic t);
6275 
6280  void Z3_API Z3_tactic_dec_ref(Z3_context c, Z3_tactic g);
6281 #endif
6282 
6292  Z3_probe Z3_API Z3_mk_probe(Z3_context c, Z3_string name);
6293 
6294 #ifdef Conly
6295 
6299  void Z3_API Z3_probe_inc_ref(Z3_context c, Z3_probe p);
6300 
6305  void Z3_API Z3_probe_dec_ref(Z3_context c, Z3_probe p);
6306 #endif
6307 
6314 
6321 
6326  Z3_tactic Z3_API Z3_tactic_par_or(Z3_context c, unsigned num, Z3_tactic const ts[]);
6327 
6334 
6340  Z3_tactic Z3_API Z3_tactic_try_for(Z3_context c, Z3_tactic t, unsigned ms);
6341 
6348 
6355 
6361  Z3_tactic Z3_API Z3_tactic_repeat(Z3_context c, Z3_tactic t, unsigned max);
6362 
6368 
6374 
6380 
6387 
6393 
6398  Z3_probe Z3_API Z3_probe_const(Z3_context x, double val);
6399 
6406  Z3_probe Z3_API Z3_probe_lt(Z3_context x, Z3_probe p1, Z3_probe p2);
6407 
6414  Z3_probe Z3_API Z3_probe_gt(Z3_context x, Z3_probe p1, Z3_probe p2);
6415 
6422  Z3_probe Z3_API Z3_probe_le(Z3_context x, Z3_probe p1, Z3_probe p2);
6423 
6430  Z3_probe Z3_API Z3_probe_ge(Z3_context x, Z3_probe p1, Z3_probe p2);
6431 
6438  Z3_probe Z3_API Z3_probe_eq(Z3_context x, Z3_probe p1, Z3_probe p2);
6439 
6446  Z3_probe Z3_API Z3_probe_and(Z3_context x, Z3_probe p1, Z3_probe p2);
6447 
6454  Z3_probe Z3_API Z3_probe_or(Z3_context x, Z3_probe p1, Z3_probe p2);
6455 
6463 
6468  unsigned Z3_API Z3_get_num_tactics(Z3_context c);
6469 
6476  Z3_string Z3_API Z3_get_tactic_name(Z3_context c, unsigned i);
6477 
6482  unsigned Z3_API Z3_get_num_probes(Z3_context c);
6483 
6490  Z3_string Z3_API Z3_get_probe_name(Z3_context c, unsigned i);
6491 
6497 
6503 
6509 
6515 
6521  double Z3_API Z3_probe_apply(Z3_context c, Z3_probe p, Z3_goal g);
6522 
6528 
6534 
6535 #ifdef CorML3
6536 
6541 
6547 #endif
6548 
6554 
6560 
6568 
6575 
6582 
6592  Z3_solver Z3_API Z3_mk_solver(Z3_context c);
6593 
6606 
6615  Z3_solver Z3_API Z3_mk_solver_for_logic(Z3_context c, Z3_symbol logic);
6616 
6624 
6630 
6636 
6641  void Z3_API Z3_solver_set_params(Z3_context c, Z3_solver s, Z3_params p);
6642 
6643 #ifdef Conly
6644 
6648  void Z3_API Z3_solver_inc_ref(Z3_context c, Z3_solver s);
6649 
6654  void Z3_API Z3_solver_dec_ref(Z3_context c, Z3_solver s);
6655 #endif
6656 
6665  void Z3_API Z3_solver_push(Z3_context c, Z3_solver s);
6666 
6675  void Z3_API Z3_solver_pop(Z3_context c, Z3_solver s, unsigned n);
6676 
6681  void Z3_API Z3_solver_reset(Z3_context c, Z3_solver s);
6682 
6690  unsigned Z3_API Z3_solver_get_num_scopes(Z3_context c, Z3_solver s);
6691 
6699  void Z3_API Z3_solver_assert(Z3_context c, Z3_solver s, Z3_ast a);
6700 
6715 
6721 
6738 
6750  unsigned num_assumptions, Z3_ast const assumptions[]);
6751 
6760 
6770 
6777 
6784 
6792 
6798 
6805 
6806 #ifdef ML4only
6807 #include <mlx_statistics.idl>
6808 #endif
6809 
6814 
6819 #ifdef Conly
6820 
6824  void Z3_API Z3_stats_inc_ref(Z3_context c, Z3_stats s);
6825 
6830  void Z3_API Z3_stats_dec_ref(Z3_context c, Z3_stats s);
6831 #endif
6832 
6837  unsigned Z3_API Z3_stats_size(Z3_context c, Z3_stats s);
6838 
6845  Z3_string Z3_API Z3_stats_get_key(Z3_context c, Z3_stats s, unsigned idx);
6846 
6853  Z3_bool Z3_API Z3_stats_is_uint(Z3_context c, Z3_stats s, unsigned idx);
6854 
6861  Z3_bool Z3_API Z3_stats_is_double(Z3_context c, Z3_stats s, unsigned idx);
6862 
6869  unsigned Z3_API Z3_stats_get_uint_value(Z3_context c, Z3_stats s, unsigned idx);
6870 
6877  double Z3_API Z3_stats_get_double_value(Z3_context c, Z3_stats s, unsigned idx);
6878 
6880 #endif
6881 
6882 
6883 #ifdef CorML3
6884 
6889 
6899  Z3_context c,
6900  Z3_symbol s,
6901  unsigned domain_size, Z3_sort const domain[],
6902  Z3_sort range
6903  );
6904 
6906 #endif
6907 
6908 
6913 
6914 #ifdef CorML3
6915 
6924  Z3_bool Z3_API Z3_set_logic(Z3_context c, Z3_string logic);
6925 
6938  void Z3_API Z3_push(Z3_context c);
6939 
6954  void Z3_API Z3_pop(Z3_context c, unsigned num_scopes);
6955 
6967  unsigned Z3_API Z3_get_num_scopes(Z3_context c);
6968 
6989  void Z3_API Z3_persist_ast(Z3_context c, Z3_ast a, unsigned num_scopes);
6990 
7006  void Z3_API Z3_assert_cnstr(Z3_context c, Z3_ast a);
7007 
7031 
7042  Z3_lbool Z3_API Z3_check(Z3_context c);
7043 
7082  Z3_context c,
7083  unsigned num_assumptions, Z3_ast const assumptions[],
7084  Z3_model * m, Z3_ast* proof,
7085  unsigned* core_size, Z3_ast core[]
7086  );
7087 #endif
7088 
7089 #ifdef CorML4
7090 
7113  Z3_context c,
7114  Z3_solver s,
7115  unsigned num_terms,
7116  Z3_ast const terms[],
7117  unsigned class_ids[]
7118  );
7119 #endif
7120 
7121 #ifdef CorML3
7122 
7135  void Z3_API Z3_del_model(Z3_context c, Z3_model m);
7136 
7143 
7154  void Z3_API Z3_soft_check_cancel(Z3_context c);
7155 
7166 
7173 
7191  Z3_ast Z3_API Z3_mk_label(Z3_context c, Z3_symbol s, Z3_bool is_pos, Z3_ast f);
7192 
7206 
7219 
7233 
7242  void Z3_API Z3_del_literals(Z3_context c, Z3_literals lbls);
7243 
7252  unsigned Z3_API Z3_get_num_literals(Z3_context c, Z3_literals lbls);
7253 
7260  Z3_symbol Z3_API Z3_get_label_symbol(Z3_context c, Z3_literals lbls, unsigned idx);
7261 
7268  Z3_ast Z3_API Z3_get_literal(Z3_context c, Z3_literals lbls, unsigned idx);
7269 
7280  void Z3_API Z3_disable_literal(Z3_context c, Z3_literals lbls, unsigned idx);
7281 
7288  void Z3_API Z3_block_literals(Z3_context c, Z3_literals lbls);
7289 
7296 
7307  unsigned Z3_API Z3_get_model_num_constants(Z3_context c, Z3_model m);
7308 
7320  Z3_func_decl Z3_API Z3_get_model_constant(Z3_context c, Z3_model m, unsigned i);
7321 
7331  unsigned Z3_API Z3_get_model_num_funcs(Z3_context c, Z3_model m);
7332 
7344  Z3_func_decl Z3_API Z3_get_model_func_decl(Z3_context c, Z3_model m, unsigned i);
7345 
7354 
7369  Z3_bool Z3_API Z3_is_array_value(Z3_context c, Z3_model m, Z3_ast v, unsigned* num_entries);
7370 
7381  void Z3_API Z3_get_array_value(Z3_context c,
7382  Z3_model m,
7383  Z3_ast v,
7384  unsigned num_entries,
7385  Z3_ast indices[],
7386  Z3_ast values[],
7387  Z3_ast* else_value
7388  );
7389 
7408  Z3_ast Z3_API Z3_get_model_func_else(Z3_context c, Z3_model m, unsigned i);
7409 
7428  unsigned Z3_API Z3_get_model_func_num_entries(Z3_context c, Z3_model m, unsigned i);
7429 
7453  unsigned Z3_API Z3_get_model_func_entry_num_args(Z3_context c,
7454  Z3_model m,
7455  unsigned i,
7456  unsigned j);
7457 
7483  Z3_model m,
7484  unsigned i,
7485  unsigned j,
7486  unsigned k);
7487 
7511  Z3_model m,
7512  unsigned i,
7513  unsigned j);
7514 
7533  Z3_bool Z3_API Z3_eval(Z3_context c, Z3_model m, Z3_ast t, Z3_ast * v);
7534 
7544  Z3_bool Z3_API Z3_eval_decl(Z3_context c, Z3_model m,
7545  Z3_func_decl d,
7546  unsigned num_args,
7547  Z3_ast const args[],
7548  Z3_ast* v);
7549 
7556 
7572 
7588 
7602 
7604 #endif
7605 
7606 
7607 #ifndef CAMLIDL
7608 #ifdef __cplusplus
7609 };
7610 #endif // __cplusplus
7611 #else
7612 }
7613 #endif // CAMLIDL
7614 
7617 #endif
Z3_probe Z3_API Z3_probe_and(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when p1 and p2 evaluates to true.
void Z3_API Z3_solver_push(Z3_context c, Z3_solver s)
Create a backtracking point.
Z3_param_descrs Z3_API Z3_optimize_get_param_descrs(Z3_context c, Z3_optimize o)
Return the parameter description set for the given optimize object.
Z3_ast Z3_API Z3_mk_unsigned_int(Z3_context c, unsigned v, Z3_sort ty)
Create a numeral of a int, bit-vector, or finite-domain sort.
Z3_string Z3_API Z3_get_probe_name(Z3_context c, unsigned i)
Return the name of the i probe.
void Z3_API Z3_stats_inc_ref(Z3_context c, Z3_stats s)
Increment the reference counter of the given statistics object.
Z3_ast Z3_API Z3_mk_true(Z3_context c)
Create an AST node representing true.
Z3_ast Z3_API Z3_mk_distinct(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing distinct(args[0], ..., args[num_args-1]).The distinct construct is us...
Z3_fixedpoint Z3_API Z3_mk_fixedpoint(Z3_context c)
Create a new fixedpoint context.
Z3_string Z3_API Z3_context_to_string(Z3_context c)
Convert the given logical context into a string.
Z3_probe Z3_API Z3_probe_le(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is less than or equal to the va...
Z3_sort_kind
The different kinds of Z3 types (See Z3_get_sort_kind).
Definition: z3_api.h:194
Z3_symbol Z3_API Z3_get_label_symbol(Z3_context c, Z3_literals lbls, unsigned idx)
Retrieve label symbol at idx.
Z3_ast Z3_API Z3_mk_real2int(Z3_context c, Z3_ast t1)
Coerce a real to an integer.
Z3_sort Z3_API Z3_mk_bv_sort(Z3_context c, unsigned sz)
Create a bit-vector type of the given size.
Z3_bool Z3_API Z3_open_log(Z3_string filename)
Log interaction to a file.
Z3_func_decl Z3_API Z3_mk_fresh_func_decl(Z3_context c, Z3_string prefix, unsigned domain_size, Z3_sort const domain[], Z3_sort range)
Declare a fresh constant or function.
Z3_ast Z3_API Z3_mk_bvnor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise nor.
void Z3_API Z3_global_param_set(Z3_string param_id, Z3_string param_value)
Set a global (or module) parameter. This setting is shared by all Z3 contexts.
Z3_literals Z3_API Z3_get_guessed_literals(Z3_context c)
Retrieve the set of literals that whose assignment were guess, but not propagated during the search...
void Z3_API Z3_solver_set_params(Z3_context c, Z3_solver s, Z3_params p)
Set the given solver using the given parameters.
Z3_func_decl Z3_API Z3_get_model_func_decl(Z3_context c, Z3_model m, unsigned i)
Return the declaration of the i-th function in the given model.
Z3_string Z3_API Z3_apply_result_to_string(Z3_context c, Z3_apply_result r)
Convert the Z3_apply_result object returned by Z3_tactic_apply into a string.
Z3_string Z3_API Z3_get_decl_rational_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the rational value, as a string, associated with a rational parameter.
Z3_bool Z3_API Z3_goal_inconsistent(Z3_context c, Z3_goal g)
Return true if the given goal contains the formula false.
void Z3_API Z3_fixedpoint_add_rule(Z3_context c, Z3_fixedpoint d, Z3_ast rule, Z3_symbol name)
Add a universal Horn clause as a named rule. The horn_rule should be of the form: ...
void Z3_API Z3_ast_map_inc_ref(Z3_context c, Z3_ast_map m)
Increment the reference counter of the given AST map.
Z3_ast Z3_API Z3_mk_quantifier_const_ex(Z3_context c, Z3_bool is_forall, unsigned weight, Z3_symbol quantifier_id, Z3_symbol skolem_id, unsigned num_bound, Z3_app const bound[], unsigned num_patterns, Z3_pattern const patterns[], unsigned num_no_patterns, Z3_ast const no_patterns[], Z3_ast body)
Create a universal or existential quantifier using a list of constants that will form the set of boun...
Z3_sort Z3_API Z3_model_get_sort(Z3_context c, Z3_model m, unsigned i)
Return a uninterpreted sort that m assigns an interpretation.
Z3_ast Z3_API Z3_mk_bvredand(Z3_context c, Z3_ast t1)
Take conjunction of bits in vector, return vector of length 1.
Z3_ast Z3_API Z3_mk_false(Z3_context c)
Create an AST node representing false.
Z3_ast_vector Z3_API Z3_solver_get_assertions(Z3_context c, Z3_solver s)
Return the set of asserted formulas as a goal object.
Z3_ast Z3_API Z3_mk_mod(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1 mod arg2.The arguments must have int type.
Z3_probe Z3_API Z3_probe_ge(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is greater than or equal to the...
unsigned Z3_API Z3_func_interp_get_arity(Z3_context c, Z3_func_interp f)
Return the arity (number of arguments) of the given function interpretation.
void Z3_API Z3_del_constructor(Z3_context c, Z3_constructor constr)
Reclaim memory allocated to constructor.
Z3_param_descrs Z3_API Z3_tactic_get_param_descrs(Z3_context c, Z3_tactic t)
Return the parameter description set for the given tactic object.
void Z3_API Z3_goal_reset(Z3_context c, Z3_goal g)
Erase all formulas from the given goal.
Z3_sort Z3_API Z3_mk_tuple_sort(Z3_context c, Z3_symbol mk_tuple_name, unsigned num_fields, Z3_symbol const field_names[], Z3_sort const field_sorts[], Z3_func_decl *mk_tuple_decl, Z3_func_decl proj_decl[])
Create a tuple type.
Z3_func_decl Z3_API Z3_get_datatype_sort_constructor_accessor(Z3_context c, Z3_sort t, unsigned idx_c, unsigned idx_a)
Return idx_a&#39;th accessor for the idx_c&#39;th constructor.
Z3_tactic Z3_API Z3_tactic_when(Z3_context c, Z3_probe p, Z3_tactic t)
Return a tactic that applies t to a given goal is the probe p evaluates to true. If p evaluates to fa...
Z3_ast Z3_API Z3_mk_bound(Z3_context c, unsigned index, Z3_sort ty)
Create a bound variable.
void Z3_API Z3_ast_map_erase(Z3_context c, Z3_ast_map m, Z3_ast k)
Erase a key from the map.
Z3_lbool Z3_API Z3_get_implied_equalities(Z3_context c, Z3_solver s, unsigned num_terms, Z3_ast const terms[], unsigned class_ids[])
Retrieve congruence class representatives for terms.
Z3_ast Z3_API Z3_mk_mul(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing args[0] * ... * args[num_args-1].The array args must have num_args el...
void Z3_API Z3_tactic_inc_ref(Z3_context c, Z3_tactic t)
Increment the reference counter of the given tactic.
Z3_ast Z3_API Z3_pattern_to_ast(Z3_context c, Z3_pattern p)
Convert a Z3_pattern into Z3_ast. This is just type casting.
void Z3_API Z3_solver_pop(Z3_context c, Z3_solver s, unsigned n)
Backtrack n backtracking points.
Z3_symbol Z3_API Z3_get_decl_name(Z3_context c, Z3_func_decl d)
Return the constant declaration name as a symbol.
Z3_literals Z3_API Z3_get_relevant_labels(Z3_context c)
Retrieve the set of labels that were relevant in the context of the current satisfied context...
void Z3_API Z3_func_interp_inc_ref(Z3_context c, Z3_func_interp f)
Increment the reference counter of the given Z3_func_interp object.
DEFINE_TYPE(Z3_symbol)
void Z3_API Z3_disable_trace(Z3_string tag)
Disable tracing messages tagged as tag when Z3 is compiled in debug mode. It is a NOOP otherwise...
Z3_ast Z3_API Z3_mk_full_set(Z3_context c, Z3_sort domain)
Create the full set.
Z3_params Z3_API Z3_mk_params(Z3_context c)
Create a Z3 (empty) parameter set. Starting at Z3 4.0, parameter sets are used to configure many comp...
Z3_tactic Z3_API Z3_tactic_and_then(Z3_context c, Z3_tactic t1, Z3_tactic t2)
Return a tactic that applies t1 to a given goal and t2 to every subgoal produced by t1...
Z3_symbol_kind Z3_API Z3_get_symbol_kind(Z3_context c, Z3_symbol s)
Return Z3_INT_SYMBOL if the symbol was constructed using Z3_mk_int_symbol, and Z3_STRING_SYMBOL if th...
unsigned Z3_API Z3_get_model_num_constants(Z3_context c, Z3_model m)
Return the number of constants assigned by the given model.
void Z3_API Z3_ast_vector_inc_ref(Z3_context c, Z3_ast_vector v)
Increment the reference counter of the given AST vector.
Z3_bool Z3_API Z3_is_eq_sort(Z3_context c, Z3_sort s1, Z3_sort s2)
compare sorts.
Z3_ast Z3_API Z3_theory_get_app(Z3_theory t, unsigned i)
Return the i-th application of the given theory in the logical context.
Z3_string Z3_API Z3_ast_to_string(Z3_context c, Z3_ast a)
Convert the given AST node into a string.
Z3_symbol Z3_API Z3_mk_string_symbol(Z3_context c, Z3_string s)
Create a Z3 symbol using a C string.
Z3_ast Z3_API Z3_mk_unary_minus(Z3_context c, Z3_ast arg)
Create an AST node representing -arg.The arguments must have int or real type.
Z3_bool Z3_API Z3_get_finite_domain_sort_size(Z3_context c, Z3_sort s, unsigned __int64 *r)
Store the size of the sort in r. Return Z3_FALSE if the call failed. That is, Z3_get_sort_kind(s) == ...
Z3_ast_vector Z3_API Z3_model_get_sort_universe(Z3_context c, Z3_model m, Z3_sort s)
Return the finite set of distinct values that represent the interpretation for sort s...
void Z3_API Z3_params_set_uint(Z3_context c, Z3_params p, Z3_symbol k, unsigned v)
Add a unsigned parameter k with value v to the parameter set p.
void Z3_API Z3_push(Z3_context c)
Create a backtracking point.
Z3_ast Z3_API Z3_mk_bvsgt(Z3_context c, Z3_ast t1, Z3_ast t2)
Two&#39;s complement signed greater than.
Z3_model Z3_API Z3_apply_result_convert_model(Z3_context c, Z3_apply_result r, unsigned i, Z3_model m)
Convert a model for the subgoal Z3_apply_result_get_subgoal(c, r, i) into a model for the original go...
Z3_lbool Z3_API Z3_optimize_check(Z3_context c, Z3_optimize o)
Check consistency and produce optimal values.
Z3_ast Z3_API Z3_mk_bvlshr(Z3_context c, Z3_ast t1, Z3_ast t2)
Logical shift right.
Z3_func_decl Z3_API Z3_model_get_func_decl(Z3_context c, Z3_model m, unsigned i)
Return the declaration of the i-th function in the given model.
void Z3_API Z3_fixedpoint_set_reduce_assign_callback(Z3_context c, Z3_fixedpoint d, Z3_fixedpoint_reduce_assign_callback_fptr cb)
Register a callback to destructive updates.
Z3_sort Z3_API Z3_get_smtlib_sort(Z3_context c, unsigned i)
Return the i-th sort parsed by the last call to Z3_parse_smtlib_string or Z3_parse_smtlib_file.
Z3_sort Z3_API Z3_mk_int_sort(Z3_context c)
Create the integer type.
Z3_ast_vector Z3_API Z3_fixedpoint_from_string(Z3_context c, Z3_fixedpoint f, Z3_string s)
Parse an SMT-LIB2 string with fixedpoint rules. Add the rules to the current fixedpoint context...
void Z3_fixedpoint_reduce_app_callback_fptr(void *, Z3_func_decl, unsigned, Z3_ast const [], Z3_ast *)
Definition: z3_api.h:5770
Definition: z3_api.h:1313
Z3_ast Z3_API Z3_mk_bvashr(Z3_context c, Z3_ast t1, Z3_ast t2)
Arithmetic shift right.
Z3_ast Z3_API Z3_mk_xor(Z3_context c, Z3_ast t1, Z3_ast t2)
Create an AST node representing t1 xor t2.
Z3_probe Z3_API Z3_probe_gt(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is greater than the value retur...
Z3_ast Z3_API Z3_mk_store(Z3_context c, Z3_ast a, Z3_ast i, Z3_ast v)
Array update.
unsigned Z3_API Z3_theory_get_num_parents(Z3_theory t, Z3_ast n)
Return the number of parents of n that are operators of the given theory.
Z3_ast Z3_API Z3_mk_const(Z3_context c, Z3_symbol s, Z3_sort ty)
Declare and create a constant.
Z3_ast Z3_API Z3_ast_vector_get(Z3_context c, Z3_ast_vector v, unsigned i)
Return the AST at position i in the AST vector v.
Z3_ast Z3_API Z3_mk_quantifier_const(Z3_context c, Z3_bool is_forall, unsigned weight, unsigned num_bound, Z3_app const bound[], unsigned num_patterns, Z3_pattern const patterns[], Z3_ast body)
Create a universal or existential quantifier using a list of constants that will form the set of boun...
Z3_tactic Z3_API Z3_mk_tactic(Z3_context c, Z3_string name)
Return a tactic associated with the given name. The complete list of tactics may be obtained using th...
Z3_ast Z3_API Z3_get_model_func_else(Z3_context c, Z3_model m, unsigned i)
Return the &#39;else&#39; value of the i-th function interpretation in the given model.
unsigned Z3_API Z3_get_tuple_sort_num_fields(Z3_context c, Z3_sort t)
Return the number of fields of the given tuple sort.
Z3_probe Z3_API Z3_probe_const(Z3_context x, double val)
Return a probe that always evaluates to val.
void Z3_API Z3_stats_dec_ref(Z3_context c, Z3_stats s)
Decrement the reference counter of the given statistics object.
Z3_sort Z3_API Z3_get_array_sort_range(Z3_context c, Z3_sort t)
Return the range of the given array sort.
void Z3_API Z3_set_error(Z3_context c, Z3_error_code e)
Set an error.
Z3_probe Z3_API Z3_probe_eq(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is equal to the value returned ...
Z3_ast Z3_API Z3_mk_concat(Z3_context c, Z3_ast t1, Z3_ast t2)
Concatenate the given bit-vectors.
Z3_ast Z3_API Z3_mk_int64(Z3_context c, __int64 v, Z3_sort ty)
Create a numeral of a int, bit-vector, or finite-domain sort.
Z3_solver Z3_API Z3_mk_solver(Z3_context c)
Create a new (incremental) solver. This solver also uses a set of builtin tactics for handling the fi...
void Z3_API Z3_set_new_elem_callback(Z3_theory t, Z3_theory_ast_callback_fptr f)
Set a callback that is invoked when an expression of sort s, where s is an interpreted sort of the th...
Z3_ast Z3_API Z3_substitute(Z3_context c, Z3_ast a, unsigned num_exprs, Z3_ast const from[], Z3_ast const to[])
Substitute every occurrence of from[i] in a with to[i], for i smaller than num_exprs. The result is the new AST. The arrays from and to must have size num_exprs. For every i smaller than num_exprs, we must have that sort of from[i] must be equal to sort of to[i].
Z3_ast Z3_API Z3_mk_bvuge(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned greater than or equal to.
Z3_ast Z3_API Z3_mk_bvugt(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned greater than.
Z3_optimize Z3_API Z3_mk_optimize(Z3_context c)
Create a new optimize context.
void Z3_API Z3_optimize_assert(Z3_context c, Z3_optimize o, Z3_ast a)
Assert hard constraint to the optimization context.
void Z3_API Z3_del_context(Z3_context c)
Delete the given logical context.
Z3_ast Z3_API Z3_mk_app(Z3_context c, Z3_func_decl d, unsigned num_args, Z3_ast const args[])
Create a constant or function application.
Z3_sort Z3_API Z3_mk_datatype(Z3_context c, Z3_symbol name, unsigned num_constructors, Z3_constructor constructors[])
Create datatype, such as lists, trees, records, enumerations or unions of records. The datatype may be recursive. Return the datatype sort.
Z3_ast Z3_API Z3_mk_set_del(Z3_context c, Z3_ast set, Z3_ast elem)
Remove an element to a set.
Z3_goal Z3_API Z3_mk_goal(Z3_context c, Z3_bool models, Z3_bool unsat_cores, Z3_bool proofs)
Create a goal (aka problem). A goal is essentially a set of formulas, that can be solved and/or trans...
Z3_bool Z3_API Z3_ast_map_contains(Z3_context c, Z3_ast_map m, Z3_ast k)
Return true if the map m contains the AST key k.
Z3_ast Z3_API Z3_mk_set_union(Z3_context c, unsigned num_args, Z3_ast const args[])
Take the union of a list of sets.
Z3_func_decl Z3_API Z3_model_get_const_decl(Z3_context c, Z3_model m, unsigned i)
Return the i-th constant in the given model.
Z3_sort Z3_API Z3_get_relation_column(Z3_context c, Z3_sort s, unsigned col)
Return sort at i&#39;th column of relation sort.
Z3_ast Z3_API Z3_mk_le(Z3_context c, Z3_ast t1, Z3_ast t2)
Create less than or equal to.
void Z3_API Z3_fixedpoint_set_reduce_app_callback(Z3_context c, Z3_fixedpoint d, Z3_fixedpoint_reduce_app_callback_fptr cb)
Register a callback for buildling terms based on the relational operators.
Z3_bool Z3_API Z3_set_logic(Z3_context c, Z3_string logic)
Set the SMTLIB logic to be used in the given logical context. It is incorrect to invoke this function...
Z3_symbol Z3_API Z3_param_descrs_get_name(Z3_context c, Z3_param_descrs p, unsigned i)
Return the number of parameters in the given parameter description set.
Z3_ast Z3_API Z3_mk_bvmul_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2)
Create a predicate that checks that the bit-wise signed multiplication of t1 and t2 does not underflo...
Z3_goal_prec
A Goal is essentially a set of formulas. Z3 provide APIs for building strategies/tactics for solving ...
Definition: z3_api.h:1385
Z3_literals Z3_API Z3_get_relevant_literals(Z3_context c)
Retrieve the set of literals that satisfy the current context.
Z3_lbool Z3_API Z3_check_and_get_model(Z3_context c, Z3_model *m)
Check whether the given logical context is consistent or not.
Z3_error_code
Z3 error codes (See Z3_get_error_code).
Definition: z3_api.h:1311
Z3_ast Z3_API Z3_mk_or(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing args[0] or ... or args[num_args-1].The array args must have num_args ...
Z3_ast Z3_API Z3_parse_smtlib2_file(Z3_context c, Z3_string file_name, unsigned num_sorts, Z3_symbol const sort_names[], Z3_sort const sorts[], unsigned num_decls, Z3_symbol const decl_names[], Z3_func_decl const decls[])
Similar to Z3_parse_smtlib2_string, but reads the benchmark from a file.
Z3_ast Z3_API Z3_func_entry_get_arg(Z3_context c, Z3_func_entry e, unsigned i)
Return an argument of a Z3_func_entry object.
int Z3_bool
Z3 Boolean type. It is just an alias for int.
Definition: z3_api.h:110
Z3_func_decl Z3_API Z3_get_as_array_func_decl(Z3_context c, Z3_ast a)
Return the function declaration f associated with a (_ as_array f) node.
unsigned Z3_API Z3_get_decl_num_parameters(Z3_context c, Z3_func_decl d)
Return the number of parameters associated with a declaration.
Z3_bool Z3_API Z3_is_eq_ast(Z3_context c, Z3_ast t1, Z3_ast t2)
compare terms.
Z3_ast Z3_API Z3_mk_bvule(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned less than or equal to.
Z3_tactic Z3_API Z3_tactic_skip(Z3_context c)
Return a tactic that just return the given goal.
Z3_probe Z3_API Z3_mk_probe(Z3_context c, Z3_string name)
Return a probe associated with the given name. The complete list of probes may be obtained using the ...
Z3_string Z3_API Z3_ast_vector_to_string(Z3_context c, Z3_ast_vector v)
Convert AST vector into a string.
unsigned Z3_API Z3_model_get_num_sorts(Z3_context c, Z3_model m)
Return the number of uninterpreted sorts that m assigs an interpretation to.
Z3_solver Z3_API Z3_mk_solver_for_logic(Z3_context c, Z3_symbol logic)
Create a new solver customized for the given logic. It behaves like Z3_mk_solver if the logic is unkn...
Z3_decl_kind Z3_API Z3_get_decl_kind(Z3_context c, Z3_func_decl d)
Return declaration kind corresponding to declaration.
Z3_string Z3_API Z3_get_tactic_name(Z3_context c, unsigned i)
Return the name of the idx tactic.
void Z3_API Z3_optimize_inc_ref(Z3_context c, Z3_optimize d)
Increment the reference counter of the given optimize context.
Z3_ast Z3_API Z3_solver_get_proof(Z3_context c, Z3_solver s)
Retrieve the proof for the last Z3_solver_check or Z3_solver_check_assumptions.
Z3_lbool Z3_API Z3_solver_check_assumptions(Z3_context c, Z3_solver s, unsigned num_assumptions, Z3_ast const assumptions[])
Check whether the assertions in the given solver and optional assumptions are consistent or not...
Z3_goal Z3_API Z3_goal_translate(Z3_context source, Z3_goal g, Z3_context target)
Copy a goal g from the context source to a the context target.
void Z3_API Z3_close_log(void)
Close interaction log.
Z3_ast Z3_API Z3_func_decl_to_ast(Z3_context c, Z3_func_decl f)
Convert a Z3_func_decl into Z3_ast. This is just type casting.
Z3_ast Z3_API Z3_mk_const_array(Z3_context c, Z3_sort domain, Z3_ast v)
Create the constant array.
Z3_ast Z3_API Z3_mk_add(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing args[0] + ... + args[num_args-1].The array args must have num_args el...
Z3_stats Z3_API Z3_fixedpoint_get_statistics(Z3_context c, Z3_fixedpoint d)
Retrieve statistics information from the last call to Z3_fixedpoint_query.
Z3_ast Z3_API Z3_simplify_ex(Z3_context c, Z3_ast a, Z3_params p)
Interface to simplifier.
Z3_ast Z3_API Z3_parse_smtlib2_string(Z3_context c, Z3_string str, unsigned num_sorts, Z3_symbol const sort_names[], Z3_sort const sorts[], unsigned num_decls, Z3_symbol const decl_names[], Z3_func_decl const decls[])
Parse the given string using the SMT-LIB2 parser.
unsigned Z3_API Z3_get_sort_id(Z3_context c, Z3_sort s)
Return a unique identifier for s.
Z3_context Z3_API Z3_mk_context_rc(Z3_config c)
Create a context using the given configuration. This function is similar to Z3_mk_context. However, in the context returned by this function, the user is responsible for managing Z3_ast reference counters. Managing reference counters is a burden and error-prone, but allows the user to use the memory more efficiently. The user must invoke Z3_inc_ref for any Z3_ast returned by Z3, and Z3_dec_ref whenever the Z3_ast is not needed anymore. This idiom is similar to the one used in BDD (binary decision diagrams) packages such as CUDD.
Z3_apply_result Z3_API Z3_tactic_apply(Z3_context c, Z3_tactic t, Z3_goal g)
Apply tactic t to the goal g.
void Z3_API Z3_update_param_value(Z3_context c, Z3_string param_id, Z3_string param_value)
Set a value of a context parameter.
Z3_string Z3_API Z3_sort_to_string(Z3_context c, Z3_sort s)
Z3_ast Z3_API Z3_mk_empty_set(Z3_context c, Z3_sort domain)
Create the empty set.
void Z3_API Z3_set_reset_callback(Z3_theory t, Z3_theory_callback_fptr f)
Set a callback that is invoked when the logical context is reset by the user. This callback is useful...
Z3_ast Z3_API Z3_mk_ext_rotate_right(Z3_context c, Z3_ast t1, Z3_ast t2)
Rotate bits of t1 to the right t2 times.
Z3_bool Z3_reduce_distinct_callback_fptr(Z3_theory, unsigned, Z3_ast const [], Z3_ast *)
Definition: z3_api.h:5095
void Z3_API Z3_solver_reset(Z3_context c, Z3_solver s)
Remove all assertions from the solver.
Z3_bool Z3_API Z3_eval(Z3_context c, Z3_model m, Z3_ast t, Z3_ast *v)
Evaluate the AST node t in the given model. Return Z3_TRUE if succeeded, and store the result in v...
Z3_string Z3_API Z3_statistics_to_string(Z3_context c)
Return runtime statistics as a string.
Z3_sort Z3_API Z3_get_quantifier_bound_sort(Z3_context c, Z3_ast a, unsigned i)
Return sort of the i&#39;th bound variable.
void Z3_API Z3_ast_vector_resize(Z3_context c, Z3_ast_vector v, unsigned n)
Resize the AST vector v.
Z3_ast Z3_API Z3_theory_get_eqc_root(Z3_theory t, Z3_ast n)
Return the root of the equivalence class containing n.
unsigned Z3_API Z3_get_smtlib_num_decls(Z3_context c)
Return the number of declarations parsed by Z3_parse_smtlib_string or Z3_parse_smtlib_file.
Z3_parameter_kind Z3_API Z3_get_decl_parameter_kind(Z3_context c, Z3_func_decl d, unsigned idx)
Return the parameter type associated with a declaration.
Z3_string Z3_API Z3_stats_get_key(Z3_context c, Z3_stats s, unsigned idx)
Return the key (a string) for a particular statistical data.
Z3_ast Z3_API Z3_get_app_arg(Z3_context c, Z3_app a, unsigned i)
Return the i-th argument of the given application.
Z3_string Z3_API Z3_solver_get_help(Z3_context c, Z3_solver s)
Return a string describing all solver available parameters.
Z3_func_decl Z3_API Z3_get_datatype_sort_recognizer(Z3_context c, Z3_sort t, unsigned idx)
Return idx&#39;th recognizer.
Z3_sort Z3_API Z3_mk_list_sort(Z3_context c, Z3_symbol name, Z3_sort elem_sort, Z3_func_decl *nil_decl, Z3_func_decl *is_nil_decl, Z3_func_decl *cons_decl, Z3_func_decl *is_cons_decl, Z3_func_decl *head_decl, Z3_func_decl *tail_decl)
Create a list sort.
Z3_bool Z3_API Z3_is_app(Z3_context c, Z3_ast a)
void Z3_API Z3_func_interp_dec_ref(Z3_context c, Z3_func_interp f)
Decrement the reference counter of the given Z3_func_interp object.
void Z3_API Z3_persist_ast(Z3_context c, Z3_ast a, unsigned num_scopes)
Persist AST through num_scopes pops. This function is only relevant if c was created using Z3_mk_cont...
Z3_func_decl Z3_API Z3_get_tuple_sort_field_decl(Z3_context c, Z3_sort t, unsigned i)
Return the i-th field declaration (i.e., projection function declaration) of the given tuple sort...
Z3_stats Z3_API Z3_solver_get_statistics(Z3_context c, Z3_solver s)
Return statistics for the given solver.
void Z3_API Z3_ast_vector_dec_ref(Z3_context c, Z3_ast_vector v)
Decrement the reference counter of the given AST vector.
Z3_symbol Z3_API Z3_get_decl_symbol_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the double value associated with an double parameter.
Z3_ast Z3_API Z3_mk_set_intersect(Z3_context c, unsigned num_args, Z3_ast const args[])
Take the intersection of a list of sets.
void Z3_theory_callback_fptr(Z3_theory t)
Definition: z3_api.h:5097
Z3_ast Z3_API Z3_mk_array_default(Z3_context c, Z3_ast array)
Access the array default value. Produces the default range value, for arrays that can be represented ...
Z3_string Z3_API Z3_pattern_to_string(Z3_context c, Z3_pattern p)
Z3_ast Z3_API Z3_mk_bv2int(Z3_context c, Z3_ast t1, Z3_bool is_signed)
Create an integer from the bit-vector argument t1. If is_signed is false, then the bit-vector t1 is t...
Z3_bool Z3_reduce_app_callback_fptr(Z3_theory, Z3_func_decl, unsigned, Z3_ast const [], Z3_ast *)
Definition: z3_api.h:5093
Z3_func_decl Z3_API Z3_get_app_decl(Z3_context c, Z3_app a)
Return the declaration of a constant or function application.
Z3_string Z3_API Z3_param_descrs_to_string(Z3_context c, Z3_param_descrs p)
Convert a parameter description set into a string. This function is mainly used for printing the cont...
void Z3_API Z3_fixedpoint_assert(Z3_context c, Z3_fixedpoint d, Z3_ast axiom)
Assert a constraint to the fixedpoint context.
unsigned Z3_API Z3_ast_vector_size(Z3_context c, Z3_ast_vector v)
Return the size of the given AST vector.
Z3_string * Z3_string_ptr
Definition: z3_api.h:120
void Z3_API Z3_fixedpoint_pop(Z3_context c, Z3_fixedpoint d)
Backtrack one backtracking point.
Z3_apply_result Z3_API Z3_tactic_apply_ex(Z3_context c, Z3_tactic t, Z3_goal g, Z3_params p)
Apply tactic t to the goal g using the parameter set p.
void Z3_API Z3_append_log(Z3_string string)
Append user-defined string to interaction log.
unsigned Z3_API Z3_get_index_value(Z3_context c, Z3_ast a)
Return index of de-Brujin bound variable.
unsigned Z3_API Z3_get_pattern_num_terms(Z3_context c, Z3_pattern p)
Return number of terms in pattern.
void Z3_API Z3_set_new_diseq_callback(Z3_theory t, Z3_theory_ast_ast_callback_fptr f)
Set a callback that is invoked when a disequality s_1 != s_2 is found by the logical context...
Z3_error_code Z3_API Z3_get_error_code(Z3_context c)
Return the error code for the last API call.
Z3_ast Z3_API Z3_mk_bvmul_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_bool is_signed)
Create a predicate that checks that the bit-wise multiplication of t1 and t2 does not overflow...
Z3_ast Z3_API Z3_mk_bvnand(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise nand.
unsigned Z3_API Z3_get_model_func_num_entries(Z3_context c, Z3_model m, unsigned i)
Return the number of entries of the i-th function interpretation in the given model.
Z3_ast Z3_API Z3_mk_bvslt(Z3_context c, Z3_ast t1, Z3_ast t2)
Two&#39;s complement signed less than.
void Z3_API Z3_optimize_set_params(Z3_context c, Z3_optimize o, Z3_params p)
Set parameters on optimization context.
void Z3_API Z3_solver_assert(Z3_context c, Z3_solver s, Z3_ast a)
Assert a constraint into the solver.
Z3_ast Z3_API Z3_get_model_func_entry_value(Z3_context c, Z3_model m, unsigned i, unsigned j)
Return the return value of the j-th entry of the i-th function interpretation in the given model...
Z3_tactic Z3_API Z3_tactic_or_else(Z3_context c, Z3_tactic t1, Z3_tactic t2)
Return a tactic that first applies t1 to a given goal, if it fails then returns the result of t2 appl...
Z3_model Z3_API Z3_solver_get_model(Z3_context c, Z3_solver s)
Retrieve the model for the last Z3_solver_check or Z3_solver_check_assumptions.
Z3_ast Z3_API Z3_optimize_get_upper(Z3_context c, Z3_optimize o, unsigned idx)
Retrieve upper bound value or approximation for the i&#39;th optimization objective.
void Z3_API Z3_del_constructor_list(Z3_context c, Z3_constructor_list clist)
Reclaim memory allocated for constructor list.
void Z3_API Z3_theory_enable_axiom_simplification(Z3_theory t, Z3_bool flag)
Enable/disable the simplification of theory axioms asserted using Z3_theory_assert_axiom. By default, the simplification of theory specific operators is disabled. That is, the reduce theory callbacks are not invoked for theory axioms. The default behavior is useful when asserting axioms stating properties of theory operators.
Z3_bool Z3_API Z3_get_numeral_uint64(Z3_context c, Z3_ast v, unsigned __int64 *u)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit in a machine unsigned __int6...
Z3_ast Z3_API Z3_mk_set_difference(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Take the set difference between two sets.
Z3_ast_kind Z3_API Z3_get_ast_kind(Z3_context c, Z3_ast a)
Return the kind of the given AST.
void Z3_API Z3_set_restart_callback(Z3_theory t, Z3_theory_callback_fptr f)
Set a callback that is invoked when Z3 restarts the search for a satisfying assignment.
BEGIN_MLAPI_EXCLUDE Z3_string Z3_API Z3_get_smtlib_error(Z3_context c)
Retrieve that last error message information generated from parsing.
void Z3_API Z3_set_ast_print_mode(Z3_context c, Z3_ast_print_mode mode)
Select mode for the format used for pretty-printing AST nodes.
void Z3_API Z3_solver_inc_ref(Z3_context c, Z3_solver s)
Increment the reference counter of the given solver.
Z3_sort Z3_API Z3_mk_finite_domain_sort(Z3_context c, Z3_symbol name, unsigned __int64 size)
Create a named finite domain sort.
Z3_context Z3_API Z3_mk_context(Z3_config c)
Create a context using the given configuration.
Z3_ast Z3_API Z3_mk_bvsrem(Z3_context c, Z3_ast t1, Z3_ast t2)
Two&#39;s complement signed remainder (sign follows dividend).
Z3_func_decl Z3_API Z3_mk_injective_function(Z3_context c, Z3_symbol s, unsigned domain_size, Z3_sort const domain[], Z3_sort range)
Create injective function declaration.
Z3_ast Z3_API Z3_mk_bvsdiv(Z3_context c, Z3_ast t1, Z3_ast t2)
Two&#39;s complement signed division.
Z3_probe Z3_API Z3_probe_not(Z3_context x, Z3_probe p)
Return a probe that evaluates to "true" when p does not evaluate to true.
Z3_param_descrs Z3_API Z3_simplify_get_param_descrs(Z3_context c)
Return the parameter description set for the simplify procedure.
Z3_func_decl Z3_API Z3_to_func_decl(Z3_context c, Z3_ast a)
Convert an AST into a FUNC_DECL_AST. This is just type casting.
Z3_bool Z3_API Z3_is_eq_func_decl(Z3_context c, Z3_func_decl f1, Z3_func_decl f2)
compare terms.
void Z3_API Z3_fixedpoint_push(Z3_context c, Z3_fixedpoint d)
Create a backtracking point.
Z3_func_decl Z3_API Z3_mk_func_decl(Z3_context c, Z3_symbol s, unsigned domain_size, Z3_sort const domain[], Z3_sort range)
Declare a constant or function.
unsigned Z3_API Z3_get_relation_arity(Z3_context c, Z3_sort s)
Return arity of relation.
Z3_ast Z3_API Z3_theory_get_parent(Z3_theory t, Z3_ast n, unsigned i)
Return the i-th parent of n. See Z3_theory_get_num_parents.
Z3_ast Z3_API Z3_theory_get_eqc_next(Z3_theory t, Z3_ast n)
Return the next element in the equivalence class containing n.
Z3_ast Z3_API Z3_mk_forall(Z3_context c, unsigned weight, unsigned num_patterns, Z3_pattern const patterns[], unsigned num_decls, Z3_sort const sorts[], Z3_symbol const decl_names[], Z3_ast body)
Create a forall formula. It takes an expression body that contains bound variables of the same sorts ...
#define Z3_func_interp_opt
Definition: z3_api.h:53
void Z3_API Z3_param_descrs_inc_ref(Z3_context c, Z3_param_descrs p)
Increment the reference counter of the given parameter description set.
Z3_ast Z3_API Z3_func_interp_get_else(Z3_context c, Z3_func_interp f)
Return the &#39;else&#39; value of the given function interpretation.
Z3_ast Z3_API Z3_mk_ext_rotate_left(Z3_context c, Z3_ast t1, Z3_ast t2)
Rotate bits of t1 to the left t2 times.
Z3_ast Z3_API Z3_mk_div(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1 div arg2.The arguments must either both have int type or both ha...
Z3_ast Z3_API Z3_theory_get_elem(Z3_theory t, unsigned i)
Return the i-th elem of the given theory in the logical context.
void Z3_API Z3_fixedpoint_inc_ref(Z3_context c, Z3_fixedpoint d)
Increment the reference counter of the given fixedpoint context.
Z3_ast Z3_API Z3_mk_unsigned_int64(Z3_context c, unsigned __int64 v, Z3_sort ty)
Create a numeral of a int, bit-vector, or finite-domain sort.
void Z3_API Z3_probe_inc_ref(Z3_context c, Z3_probe p)
Increment the reference counter of the given probe.
Z3_ast Z3_API Z3_update_term(Z3_context c, Z3_ast a, unsigned num_args, Z3_ast const args[])
Update the arguments of term a using the arguments args. The number of arguments num_args should coin...
unsigned Z3_API Z3_get_quantifier_num_bound(Z3_context c, Z3_ast a)
Return number of bound variables of quantifier.
Z3_bool Z3_theory_final_check_callback_fptr(Z3_theory)
Definition: z3_api.h:5099
Z3_ast_vector Z3_API Z3_mk_ast_vector(Z3_context c)
Return an empty AST vector.
Z3_bool Z3_API Z3_goal_is_decided_sat(Z3_context c, Z3_goal g)
Return true if the goal is empty, and it is precise or the product of a under approximation.
Z3_func_decl Z3_API Z3_get_decl_func_decl_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the expresson value associated with an expression parameter.
Z3_ast Z3_API Z3_mk_int2real(Z3_context c, Z3_ast t1)
Coerce an integer to a real.
Z3_ast Z3_API Z3_mk_bvshl(Z3_context c, Z3_ast t1, Z3_ast t2)
Shift left.
Z3_sort Z3_API Z3_mk_uninterpreted_sort(Z3_context c, Z3_symbol s)
Create a free (uninterpreted) type using the given name (symbol).
Z3_ast Z3_API Z3_mk_lt(Z3_context c, Z3_ast t1, Z3_ast t2)
Create less than.
Z3_ast_kind
The different kinds of Z3 AST (abstract syntax trees). That is, terms, formulas and types...
Definition: z3_api.h:222
unsigned Z3_API Z3_goal_depth(Z3_context c, Z3_goal g)
Return the depth of the given goal. It tracks how many transformations were applied to it...
void Z3_API Z3_apply_result_inc_ref(Z3_context c, Z3_apply_result r)
Increment the reference counter of the given Z3_apply_result object.
void Z3_API Z3_func_entry_inc_ref(Z3_context c, Z3_func_entry e)
Increment the reference counter of the given Z3_func_entry object.
void Z3_API Z3_dec_ref(Z3_context c, Z3_ast a)
Decrement the reference counter of the given AST. The context c should have been created using Z3_mk_...
void Z3_API Z3_del_config(Z3_config c)
Delete the given configuration object.
Z3_bool Z3_API Z3_get_numeral_uint(Z3_context c, Z3_ast v, unsigned *u)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit in a machine unsigned int...
Z3_ast Z3_API Z3_get_context_assignment(Z3_context c)
Extract satisfying assignment from context as a conjunction.
Z3_ast_map Z3_API Z3_mk_ast_map(Z3_context c)
Return an empty mapping from AST to AST.
BEGIN_MLAPI_EXCLUDE Z3_string Z3_API Z3_get_error_msg_ex(Z3_context c, Z3_error_code err)
Return a string describing the given error code.
void Z3_API Z3_optimize_push(Z3_context c, Z3_optimize d)
Create a backtracking point.
Z3_ast Z3_API Z3_mk_not(Z3_context c, Z3_ast a)
Create an AST node representing not(a).
Z3_ast Z3_API Z3_mk_and(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing args[0] and ... and args[num_args-1].The array args must have num_arg...
Z3_ast Z3_API Z3_substitute_vars(Z3_context c, Z3_ast a, unsigned num_exprs, Z3_ast const to[])
Substitute the free variables in a with the expressions in to. For every i smaller than num_exprs...
Z3_ast Z3_API Z3_get_quantifier_no_pattern_ast(Z3_context c, Z3_ast a, unsigned i)
Return i&#39;th no_pattern.
Z3_ast Z3_API Z3_mk_ge(Z3_context c, Z3_ast t1, Z3_ast t2)
Create greater than or equal to.
unsigned Z3_API Z3_get_bv_sort_size(Z3_context c, Z3_sort t)
Return the size of the given bit-vector sort.
Z3_ast Z3_API Z3_optimize_get_lower(Z3_context c, Z3_optimize o, unsigned idx)
Retrieve lower bound value or approximation for the i&#39;th optimization objective.
Z3_sort Z3_API Z3_mk_array_sort(Z3_context c, Z3_sort domain, Z3_sort range)
Create an array type.
unsigned Z3_API Z3_stats_size(Z3_context c, Z3_stats s)
Return the number of statistical data in s.
Z3_ast Z3_API Z3_mk_set_subset(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Check for subsetness of sets.
unsigned Z3_API Z3_get_smtlib_num_formulas(Z3_context c)
Return the number of SMTLIB formulas parsed by the last call to Z3_parse_smtlib_string or Z3_parse_sm...
unsigned Z3_API Z3_get_model_func_entry_num_args(Z3_context c, Z3_model m, unsigned i, unsigned j)
Return the number of arguments of the j-th entry of the i-th function interpretation in the given mod...
Z3_goal_prec Z3_API Z3_goal_precision(Z3_context c, Z3_goal g)
Return the "precision" of the given goal. Goals can be transformed using over and under approximation...
Z3_ast Z3_API Z3_mk_bvsge(Z3_context c, Z3_ast t1, Z3_ast t2)
Two&#39;s complement signed greater than or equal to.
Z3_pattern Z3_API Z3_get_quantifier_pattern_ast(Z3_context c, Z3_ast a, unsigned i)
Return i&#39;th pattern.
Z3_ast Z3_API Z3_mk_set_add(Z3_context c, Z3_ast set, Z3_ast elem)
Add an element to a set.
double Z3_API Z3_get_decl_double_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the double value associated with an double parameter.
Z3_ast Z3_API Z3_mk_real(Z3_context c, int num, int den)
Create a real from a fraction.
Z3_ast Z3_API Z3_mk_set_complement(Z3_context c, Z3_ast arg)
Take the complement of a set.
unsigned Z3_API Z3_get_ast_hash(Z3_context c, Z3_ast a)
Return a hash code for the given AST. The hash code is structural. You can use Z3_get_ast_id intercha...
Z3_string Z3_API Z3_params_to_string(Z3_context c, Z3_params p)
Convert a parameter set into a string. This function is mainly used for printing the contents of a pa...
void Z3_API Z3_set_final_check_callback(Z3_theory t, Z3_theory_final_check_callback_fptr f)
Set a callback that is invoked before Z3 starts building a model. A theory may use this callback to p...
Z3_ast Z3_API Z3_mk_bvsle(Z3_context c, Z3_ast t1, Z3_ast t2)
Two&#39;s complement signed less than or equal to.
Z3_string Z3_API Z3_optimize_to_string(Z3_context c, Z3_optimize o)
Print the current context as a string.
Z3_ast Z3_API Z3_mk_exists_const(Z3_context c, unsigned weight, unsigned num_bound, Z3_app const bound[], unsigned num_patterns, Z3_pattern const patterns[], Z3_ast body)
Similar to Z3_mk_forall_const.
Z3_lbool
Lifted Boolean type: false, undefined, true.
Definition: z3_api.h:143
Z3_ast_vector Z3_API Z3_fixedpoint_from_file(Z3_context c, Z3_fixedpoint f, Z3_string s)
Parse an SMT-LIB2 file with fixedpoint rules. Add the rules to the current fixedpoint context...
Z3_app Z3_API Z3_to_app(Z3_context c, Z3_ast a)
Convert an ast into an APP_AST. This is just type casting.
void Z3_API Z3_fixedpoint_init(Z3_context c, Z3_fixedpoint d, void *state)
Initialize the context with a user-defined state.
unsigned Z3_API Z3_get_app_num_args(Z3_context c, Z3_app a)
Return the number of argument of an application. If t is an constant, then the number of arguments is...
Z3_tactic Z3_API Z3_tactic_par_and_then(Z3_context c, Z3_tactic t1, Z3_tactic t2)
Return a tactic that applies t1 to a given goal and then t2 to every subgoal produced by t1...
#define __int64
Definition: z3_api.h:62
void Z3_API Z3_goal_dec_ref(Z3_context c, Z3_goal g)
Decrement the reference counter of the given goal.
Z3_string Z3_API Z3_fixedpoint_get_reason_unknown(Z3_context c, Z3_fixedpoint d)
Retrieve a string that describes the last status returned by Z3_fixedpoint_query. ...
unsigned Z3_API Z3_get_domain_size(Z3_context c, Z3_func_decl d)
Return the number of parameters of the given declaration.
Z3_ast Z3_API Z3_sort_to_ast(Z3_context c, Z3_sort s)
Convert a Z3_sort into Z3_ast. This is just type casting.
Z3_ast Z3_API Z3_theory_mk_constant(Z3_context c, Z3_theory t, Z3_symbol n, Z3_sort s)
Create an interpreted constant for the given theory.
void Z3_API Z3_block_literals(Z3_context c, Z3_literals lbls)
Block subsequent checks using the remaining enabled labels.
unsigned Z3_API Z3_get_smtlib_num_assumptions(Z3_context c)
Return the number of SMTLIB assumptions parsed by Z3_parse_smtlib_string or Z3_parse_smtlib_file.
Z3_ast Z3_API Z3_get_numerator(Z3_context c, Z3_ast a)
Return the numerator (as a numeral AST) of a numeral AST of sort Real.
void Z3_API Z3_set_error_handler(Z3_context c, Z3_error_handler h)
Register a Z3 error handler.
void Z3_API Z3_enable_trace(Z3_string tag)
Enable tracing messages tagged as tag when Z3 is compiled in debug mode. It is a NOOP otherwise...
Z3_ast Z3_API Z3_get_model_func_entry_arg(Z3_context c, Z3_model m, unsigned i, unsigned j, unsigned k)
Return the k-th argument of the j-th entry of the i-th function interpretation in the given model...
Z3_ast Z3_API Z3_mk_sign_ext(Z3_context c, unsigned i, Z3_ast t1)
Sign-extend of the given bit-vector to the (signed) equivalent bitvector of size m+i, where m is the size of the given bit-vector.
Z3_func_interp Z3_API Z3_model_get_func_interp(Z3_context c, Z3_model m, Z3_func_decl f)
Return the interpretation of the function f in the model m. Return NULL, if the model does not assign...
void Z3_API Z3_model_dec_ref(Z3_context c, Z3_model m)
Decrement the reference counter of the given model.
Z3_ast Z3_API Z3_mk_rotate_right(Z3_context c, unsigned i, Z3_ast t1)
Rotate bits of t1 to the right i times.
unsigned Z3_API Z3_param_descrs_size(Z3_context c, Z3_param_descrs p)
Return the number of parameters in the given parameter description set.
unsigned Z3_API Z3_model_get_num_consts(Z3_context c, Z3_model m)
Return the number of constants assigned by the given model.
Z3_ast Z3_API Z3_model_get_const_interp(Z3_context c, Z3_model m, Z3_func_decl a)
Return the interpretation (i.e., assignment) of constant a in the model m. Return NULL...
void Z3_API Z3_fixedpoint_dec_ref(Z3_context c, Z3_fixedpoint d)
Decrement the reference counter of the given fixedpoint context.
Z3_ast Z3_API Z3_mk_quantifier_ex(Z3_context c, Z3_bool is_forall, unsigned weight, Z3_symbol quantifier_id, Z3_symbol skolem_id, unsigned num_patterns, Z3_pattern const patterns[], unsigned num_no_patterns, Z3_ast const no_patterns[], unsigned num_decls, Z3_sort const sorts[], Z3_symbol const decl_names[], Z3_ast body)
Create a quantifier - universal or existential, with pattern hints, no patterns, and attributes...
Z3_ast_print_mode
Z3 pretty printing modes (See Z3_set_ast_print_mode).
Definition: z3_api.h:1284
unsigned Z3_API Z3_goal_size(Z3_context c, Z3_goal g)
Return the number of formulas in the given goal.
Z3_ast Z3_API Z3_mk_bvxnor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise xnor.
Z3_func_decl Z3_API Z3_get_tuple_sort_mk_decl(Z3_context c, Z3_sort t)
Return the constructor declaration of the given tuple sort.
Z3_sort Z3_API Z3_get_array_sort_domain(Z3_context c, Z3_sort t)
Return the domain of the given array sort.
Z3_bool Z3_API Z3_stats_is_uint(Z3_context c, Z3_stats s, unsigned idx)
Return Z3_TRUE if the given statistical data is a unsigned integer.
Z3_bool Z3_API Z3_theory_is_decl(Z3_theory t, Z3_func_decl d)
Return Z3_TRUE if d is an interpreted theory declaration.
Z3_func_decl Z3_API Z3_get_smtlib_decl(Z3_context c, unsigned i)
Return the i-th declaration parsed by the last call to Z3_parse_smtlib_string or Z3_parse_smtlib_file...
Z3_ast_vector Z3_API Z3_fixedpoint_get_rules(Z3_context c, Z3_fixedpoint f)
Retrieve set of rules from fixedpoint context.
void Z3_API Z3_set_push_callback(Z3_theory t, Z3_theory_callback_fptr f)
Set a callback that is invoked when Z3 creates a case-split (aka backtracking point).
Z3_ast Z3_API Z3_mk_pble(Z3_context c, unsigned num_args, Z3_ast const args[], int coeffs[], int k)
Pseudo-Boolean relations.
int Z3_API Z3_get_symbol_int(Z3_context c, Z3_symbol s)
Return the symbol int value.
void Z3_API Z3_params_dec_ref(Z3_context c, Z3_params p)
Decrement the reference counter of the given parameter set.
void Z3_API Z3_optimize_dec_ref(Z3_context c, Z3_optimize d)
Decrement the reference counter of the given optimize context.
double Z3_API Z3_probe_apply(Z3_context c, Z3_probe p, Z3_goal g)
Execute the probe over the goal. The probe always produce a double value. "Boolean" probes return 0...
Z3_ast_vector Z3_API Z3_solver_get_unsat_core(Z3_context c, Z3_solver s)
Retrieve the unsat core for the last Z3_solver_check_assumptions The unsat core is a subset of the as...
void Z3_API Z3_set_new_eq_callback(Z3_theory t, Z3_theory_ast_ast_callback_fptr f)
Set a callback that is invoked when an equality s_1 = s_2 is found by the logical context...
void Z3_API Z3_toggle_warning_messages(Z3_bool enabled)
Enable/disable printing warning messages to the console.
Z3_ast Z3_API Z3_theory_mk_value(Z3_context c, Z3_theory t, Z3_symbol n, Z3_sort s)
Create an interpreted theory constant value. Values are assumed to be different from each other...
Z3_ast Z3_API Z3_mk_bvsmod(Z3_context c, Z3_ast t1, Z3_ast t2)
Two&#39;s complement signed remainder (sign follows divisor).
Z3_ast Z3_API Z3_get_literal(Z3_context c, Z3_literals lbls, unsigned idx)
Retrieve literal expression at idx.
Z3_ast Z3_API Z3_mk_exists(Z3_context c, unsigned weight, unsigned num_patterns, Z3_pattern const patterns[], unsigned num_decls, Z3_sort const sorts[], Z3_symbol const decl_names[], Z3_ast body)
Create an exists formula. Similar to Z3_mk_forall.
Z3_bool Z3_API Z3_get_numeral_small(Z3_context c, Z3_ast a, __int64 *num, __int64 *den)
Return numeral value, as a pair of 64 bit numbers if the representation fits.
Z3_ast Z3_API Z3_func_entry_get_value(Z3_context c, Z3_func_entry e)
Return the value of this point.
unsigned Z3_API Z3_stats_get_uint_value(Z3_context c, Z3_stats s, unsigned idx)
Return the unsigned value of the given statistical data.
unsigned Z3_API Z3_optimize_assert_soft(Z3_context c, Z3_optimize o, Z3_ast a, Z3_string weight, Z3_symbol id)
Assert soft constraint to the optimization context.
Z3_ast Z3_API Z3_mk_bvult(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned less than.
Z3_string Z3_API Z3_goal_to_string(Z3_context c, Z3_goal g)
Convert a goal into a string.
unsigned Z3_API Z3_model_get_num_funcs(Z3_context c, Z3_model m)
Return the number of function interpretations in the given model.
Z3_ast Z3_API Z3_mk_int2bv(Z3_context c, unsigned n, Z3_ast t1)
Create an n bit bit-vector from the integer argument t1.
Z3_ast Z3_API Z3_ast_map_find(Z3_context c, Z3_ast_map m, Z3_ast k)
Return the value associated with the key k.
unsigned Z3_API Z3_get_num_tactics(Z3_context c)
Return the number of builtin tactics available in Z3.
Z3_param_kind
The different kinds of parameters that can be associated with parameter sets. (see Z3_mk_params)...
Definition: z3_api.h:1239
Z3_string Z3_API Z3_get_numeral_string(Z3_context c, Z3_ast a)
Return numeral value, as a string of a numeric constant term.
Z3_ast Z3_API Z3_mk_rem(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1 rem arg2.The arguments must have int type.
Z3_ast Z3_API Z3_get_smtlib_assumption(Z3_context c, unsigned i)
Return the i-th assumption parsed by the last call to Z3_parse_smtlib_string or Z3_parse_smtlib_file...
Z3_bool Z3_API Z3_model_eval(Z3_context c, Z3_model m, Z3_ast t, Z3_bool model_completion, Z3_ast *v)
Evaluate the AST node t in the given model. Return Z3_TRUE if succeeded, and store the result in v...
unsigned Z3_API Z3_func_entry_get_num_args(Z3_context c, Z3_func_entry e)
Return the number of arguments in a Z3_func_entry object.
void Z3_API Z3_parse_smtlib_string(Z3_context c, Z3_string str, unsigned num_sorts, Z3_symbol const sort_names[], Z3_sort const sorts[], unsigned num_decls, Z3_symbol const decl_names[], Z3_func_decl const decls[])
Parse the given string using the SMT-LIB parser.
Z3_symbol_kind
The different kinds of symbol. In Z3, a symbol can be represented using integers and strings (See Z3_...
Definition: z3_api.h:158
Z3_bool Z3_API Z3_model_has_interp(Z3_context c, Z3_model m, Z3_func_decl a)
Test if there exists an interpretation (i.e., assignment) for a in the model m.
Z3_ast Z3_API Z3_simplify(Z3_context c, Z3_ast a)
Interface to simplifier.
Z3_model Z3_API Z3_optimize_get_model(Z3_context c, Z3_optimize o)
Retrieve the model for the last Z3_optimize_check.
void Z3_API Z3_del_literals(Z3_context c, Z3_literals lbls)
Delete a labels context.
Z3_ast Z3_API Z3_get_pattern(Z3_context c, Z3_pattern p, unsigned idx)
Return i&#39;th ast in pattern.
unsigned Z3_API Z3_get_smtlib_num_sorts(Z3_context c)
Return the number of sorts parsed by Z3_parse_smtlib_string or Z3_parse_smtlib_file.
Z3_sort Z3_API Z3_theory_mk_sort(Z3_context c, Z3_theory t, Z3_symbol s)
Create an interpreted theory sort.
unsigned Z3_API Z3_get_quantifier_num_patterns(Z3_context c, Z3_ast a)
Return number of patterns used in quantifier.
void Z3_API Z3_interrupt(Z3_context c)
Interrupt the execution of a Z3 procedure. This procedure can be used to interrupt: solvers...
Z3_ast Z3_API Z3_mk_bvsub_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_bool is_signed)
Create a predicate that checks that the bit-wise subtraction of t1 and t2 does not underflow...
Z3_bool Z3_API Z3_is_array_value(Z3_context c, Z3_model m, Z3_ast v, unsigned *num_entries)
Determine whether the term encodes an array value. A term encodes an array value if it is a nested se...
void Z3_API Z3_set_pop_callback(Z3_theory t, Z3_theory_callback_fptr f)
Set a callback that is invoked when Z3 backtracks a case-split.
Z3_param_descrs Z3_API Z3_fixedpoint_get_param_descrs(Z3_context c, Z3_fixedpoint f)
Return the parameter description set for the given fixedpoint object.
Z3_ast Z3_API Z3_mk_bvor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise or.
unsigned Z3_API Z3_theory_get_num_apps(Z3_theory t)
Return the number of theory applications in the logical context. These are the expressions notified u...
Z3_ast Z3_API Z3_mk_bvsdiv_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2)
Create a predicate that checks that the bit-wise signed division of t1 and t2 does not overflow...
unsigned Z3_API Z3_theory_get_num_elems(Z3_theory t)
Return the number of expressions of the given theory in the logical context. These are the expression...
Z3_lbool Z3_API Z3_check_assumptions(Z3_context c, unsigned num_assumptions, Z3_ast const assumptions[], Z3_model *m, Z3_ast *proof, unsigned *core_size, Z3_ast core[])
Check whether the given logical context and optional assumptions is consistent or not...
Z3_ast Z3_API Z3_mk_repeat(Z3_context c, unsigned i, Z3_ast t1)
Repeat the given bit-vector up length i.
unsigned Z3_API Z3_fixedpoint_get_num_levels(Z3_context c, Z3_fixedpoint d, Z3_func_decl pred)
Query the PDR engine for the maximal levels properties are known about predicate. ...
Z3_ast Z3_API Z3_get_decl_ast_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the expresson value associated with an expression parameter.
Z3_tactic Z3_API Z3_tactic_using_params(Z3_context c, Z3_tactic t, Z3_params p)
Return a tactic that applies t using the given set of parameters.
Z3_ast Z3_API Z3_mk_bvneg_no_overflow(Z3_context c, Z3_ast t1)
Check that bit-wise negation does not overflow when t1 is interpreted as a signed bit-vector...
Z3_string Z3_API Z3_solver_to_string(Z3_context c, Z3_solver s)
Convert a solver into a string.
Z3_bool Z3_API Z3_is_algebraic_number(Z3_context c, Z3_ast a)
Return true if the give AST is a real algebraic number.
Z3_lbool Z3_API Z3_solver_check(Z3_context c, Z3_solver s)
Check whether the assertions in a given solver are consistent or not.
Z3_ast_vector Z3_API Z3_ast_vector_translate(Z3_context s, Z3_ast_vector v, Z3_context t)
Translate the AST vector v from context s into an AST vector in context t.
void Z3_API Z3_pop(Z3_context c, unsigned num_scopes)
Backtrack.
void Z3_API Z3_set_new_relevant_callback(Z3_theory t, Z3_theory_ast_callback_fptr f)
Set a callback that is invoked when an expression is marked as relevant during the search...
Z3_sort Z3_API Z3_get_domain(Z3_context c, Z3_func_decl d, unsigned i)
Return the sort of the i-th parameter of the given function declaration.
void Z3_API Z3_fixedpoint_add_cover(Z3_context c, Z3_fixedpoint d, int level, Z3_func_decl pred, Z3_ast property)
Add property about the predicate pred. Add a property of predicate pred at level. It gets pushed forw...
void Z3_API Z3_set_reduce_eq_callback(Z3_theory t, Z3_reduce_eq_callback_fptr f)
Set a callback for simplifying the atom s_1 = s_2, when the sort of s_1 and s_2 is an interpreted sor...
void Z3_API Z3_optimize_pop(Z3_context c, Z3_optimize d)
Backtrack one level.
Z3_ast Z3_API Z3_mk_is_int(Z3_context c, Z3_ast t1)
Check if a real number is an integer.
Z3_sort Z3_API Z3_mk_real_sort(Z3_context c)
Create the real type.
unsigned Z3_API Z3_get_ast_id(Z3_context c, Z3_ast t)
Return a unique identifier for t. The identifier is unique up to structural equality. Thus, two ast nodes created by the same context and having the same children and same function symbols have the same identifiers. Ast nodes created in the same context, but having different children or different functions have different identifiers. Variables and quantifiers are also assigned different identifiers according to their structure.
Z3_string Z3_API Z3_get_numeral_decimal_string(Z3_context c, Z3_ast a, unsigned precision)
Return numeral as a string in decimal notation. The result has at most precision decimal places...
Z3_ast Z3_API Z3_mk_set_member(Z3_context c, Z3_ast elem, Z3_ast set)
Check for set membership.
unsigned Z3_API Z3_get_quantifier_weight(Z3_context c, Z3_ast a)
Obtain weight of quantifier.
Z3_symbol Z3_API Z3_get_quantifier_bound_name(Z3_context c, Z3_ast a, unsigned i)
Return symbol of the i&#39;th bound variable.
Z3_ast Z3_API Z3_app_to_ast(Z3_context c, Z3_app a)
Convert a Z3_app into Z3_ast. This is just type casting.
void Z3_API Z3_del_model(Z3_context c, Z3_model m)
Delete a model object.
Z3_config Z3_API Z3_mk_config(void)
Create a configuration object for the Z3 context object.
unsigned Z3_API Z3_goal_num_exprs(Z3_context c, Z3_goal g)
Return the number of formulas, subformulas and terms in the given goal.
Z3_bool Z3_API Z3_is_quantifier_forall(Z3_context c, Z3_ast a)
Determine if quantifier is universal.
Z3_sort Z3_API Z3_get_range(Z3_context c, Z3_func_decl d)
Return the range of the given declaration.
Z3_bool Z3_reduce_eq_callback_fptr(Z3_theory t, Z3_ast a, Z3_ast b, Z3_ast *r)
Definition: z3_api.h:5091
void Z3_API Z3_fixedpoint_update_rule(Z3_context c, Z3_fixedpoint d, Z3_ast a, Z3_symbol name)
Update a named rule. A rule with the same name must have been previously created. ...
Z3_string Z3_API Z3_stats_to_string(Z3_context c, Z3_stats s)
Convert a statistics into a string.
Z3_bool Z3_API Z3_get_numeral_int(Z3_context c, Z3_ast v, int *i)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit in a machine int...
Z3_tactic Z3_API Z3_tactic_repeat(Z3_context c, Z3_tactic t, unsigned max)
Return a tactic that keeps applying t until the goal is not modified anymore or the maximum number of...
void Z3_API Z3_params_validate(Z3_context c, Z3_params p, Z3_param_descrs d)
Validate the parameter set p against the parameter description set d.
unsigned Z3_API Z3_get_num_scopes(Z3_context c)
Retrieve the current scope level.
void Z3_API Z3_mk_datatypes(Z3_context c, unsigned num_sorts, Z3_symbol const sort_names[], Z3_sort sorts[], Z3_constructor_list constructor_lists[])
Create mutually recursive datatypes.
#define Z3_sort_opt
Definition: z3_api.h:31
Z3_stats Z3_API Z3_optimize_get_statistics(Z3_context c, Z3_optimize d)
Retrieve statistics information from the last call to Z3_optimize_check.
Z3_ast Z3_API Z3_mk_gt(Z3_context c, Z3_ast t1, Z3_ast t2)
Create greater than.
void Z3_API Z3_ast_map_dec_ref(Z3_context c, Z3_ast_map m)
Decrement the reference counter of the given AST map.
void Z3_API Z3_solver_assert_and_track(Z3_context c, Z3_solver s, Z3_ast a, Z3_ast p)
Assert a constraint a into the solver, and track it (in the unsat) core using the Boolean constant p...
void Z3_API Z3_set_new_app_callback(Z3_theory t, Z3_theory_ast_callback_fptr f)
Set a callback that is invoked when a theory application is finally added into the logical context...
Z3_parameter_kind
The different kinds of parameters that can be associated with function symbols.
Definition: z3_api.h:179
Z3_tactic Z3_API Z3_tactic_cond(Z3_context c, Z3_probe p, Z3_tactic t1, Z3_tactic t2)
Return a tactic that applies t1 to a given goal if the probe p evaluates to true, and t2 if p evaluat...
Z3_ast Z3_API Z3_mk_sub(Z3_context c, unsigned num_args, Z3_ast const args[])
Create an AST node representing args[0] - ... - args[num_args - 1].The array args must have num_args ...
Z3_tactic Z3_API Z3_tactic_par_or(Z3_context c, unsigned num, Z3_tactic const ts[])
Return a tactic that applies the given tactics in parallel.
Z3_solver Z3_API Z3_mk_simple_solver(Z3_context c)
Create a new (incremental) solver.
Z3_ast Z3_API Z3_mk_power(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1^arg2.
Z3_ast Z3_API Z3_mk_implies(Z3_context c, Z3_ast t1, Z3_ast t2)
Create an AST node representing t1 implies t2.
Z3_tactic Z3_API Z3_tactic_try_for(Z3_context c, Z3_tactic t, unsigned ms)
Return a tactic that applies t to a given goal for ms milliseconds. If t does not terminate in ms mil...
void Z3_API Z3_reset_memory(void)
Reset all allocated resources.
void Z3_API Z3_set_param_value(Z3_config c, Z3_string param_id, Z3_string param_value)
Set a configuration parameter.
Z3_string Z3_API Z3_solver_get_reason_unknown(Z3_context c, Z3_solver s)
Return a brief justification for an "unknown" result (i.e., Z3_L_UNDEF) for the commands Z3_solver_ch...
Z3_ast Z3_API Z3_mk_bvnot(Z3_context c, Z3_ast t1)
Bitwise negation.
Z3_ast_vector Z3_API Z3_ast_map_keys(Z3_context c, Z3_ast_map m)
Return the keys stored in the given map.
Z3_probe Z3_API Z3_probe_lt(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when the value returned by p1 is less than the value returned...
Z3_string Z3_API Z3_fixedpoint_get_help(Z3_context c, Z3_fixedpoint f)
Return a string describing all fixedpoint available parameters.
void Z3_API Z3_params_set_double(Z3_context c, Z3_params p, Z3_symbol k, double v)
Add a double parameter k with value v to the parameter set p.
void Z3_API Z3_goal_assert(Z3_context c, Z3_goal g, Z3_ast a)
Add a new formula a to the given goal.
Z3_tactic Z3_API Z3_tactic_fail_if(Z3_context c, Z3_probe p)
Return a tactic that fails if the probe p evaluates to false.
Z3_string Z3_API Z3_optimize_get_help(Z3_context c, Z3_optimize t)
Return a string containing a description of parameters accepted by optimize.
Z3_string Z3_API Z3_get_symbol_string(Z3_context c, Z3_symbol s)
Return the symbol name.
unsigned Z3_API Z3_get_datatype_sort_num_constructors(Z3_context c, Z3_sort t)
Return number of constructors for datatype.
Z3_ast Z3_API Z3_get_algebraic_number_upper(Z3_context c, Z3_ast a, unsigned precision)
Return a upper bound for the given real algebraic number. The interval isolating the number is smalle...
Z3_pattern Z3_API Z3_mk_pattern(Z3_context c, unsigned num_patterns, Z3_ast const terms[])
Create a pattern for quantifier instantiation.
Z3_ast Z3_API Z3_get_smtlib_formula(Z3_context c, unsigned i)
Return the i-th formula parsed by the last call to Z3_parse_smtlib_string or Z3_parse_smtlib_file.
Z3_theory_data Z3_API Z3_theory_get_ext_data(Z3_theory t)
Return a pointer to the external data-structure supplied to the function Z3_mk_theory.
void Z3_API Z3_ast_map_insert(Z3_context c, Z3_ast_map m, Z3_ast k, Z3_ast v)
Store/Replace a new key, value pair in the given map.
Z3_goal Z3_API Z3_apply_result_get_subgoal(Z3_context c, Z3_apply_result r, unsigned i)
Return one of the subgoals in the Z3_apply_result object returned by Z3_tactic_apply.
Z3_sort_kind Z3_API Z3_get_sort_kind(Z3_context c, Z3_sort t)
Return the sort kind (e.g., array, tuple, int, bool, etc).
Z3_lbool Z3_API Z3_get_bool_value(Z3_context c, Z3_ast a)
Return Z3_L_TRUE if a is true, Z3_L_FALSE if it is false, and Z3_L_UNDEF otherwise.
Z3_bool Z3_API Z3_is_numeral_ast(Z3_context c, Z3_ast a)
Z3_param_kind Z3_API Z3_param_descrs_get_kind(Z3_context c, Z3_param_descrs p, Z3_symbol n)
Return the kind associated with the given parameter name n.
Z3_ast Z3_API Z3_mk_bvredor(Z3_context c, Z3_ast t1)
Take disjunction of bits in vector, return vector of length 1.
Z3_sort Z3_API Z3_mk_set_sort(Z3_context c, Z3_sort ty)
Create Set type.
unsigned Z3_API Z3_get_quantifier_num_no_patterns(Z3_context c, Z3_ast a)
Return number of no_patterns used in quantifier.
unsigned Z3_API Z3_get_func_decl_id(Z3_context c, Z3_func_decl f)
Return a unique identifier for f.
void Z3_API Z3_apply_result_dec_ref(Z3_context c, Z3_apply_result r)
Decrement the reference counter of the given Z3_apply_result object.
Z3_func_decl Z3_API Z3_theory_mk_func_decl(Z3_context c, Z3_theory t, Z3_symbol n, unsigned domain_size, Z3_sort const domain[], Z3_sort range)
Create an interpreted function declaration for the given theory.
Z3_ast Z3_API Z3_mk_bvsub(Z3_context c, Z3_ast t1, Z3_ast t2)
Standard two&#39;s complement subtraction.
Z3_lbool Z3_API Z3_check(Z3_context c)
Check whether the given logical context is consistent or not.
Z3_ast Z3_API Z3_mk_bvand(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise and.
Z3_ast_vector Z3_API Z3_fixedpoint_get_assertions(Z3_context c, Z3_fixedpoint f)
Retrieve set of background assertions from fixedpoint context.
Z3_ast Z3_API Z3_mk_int(Z3_context c, int v, Z3_sort ty)
Create a numeral of an int, bit-vector, or finite-domain sort.
Z3_string Z3_API Z3_get_error_msg(Z3_error_code err)
Return a string describing the given error code.
Z3_bool Z3_API Z3_eval_decl(Z3_context c, Z3_model m, Z3_func_decl d, unsigned num_args, Z3_ast const args[], Z3_ast *v)
Evaluate declaration given values.
void Z3_API Z3_goal_inc_ref(Z3_context c, Z3_goal g)
Increment the reference counter of the given goal.
Z3_ast Z3_API Z3_fixedpoint_get_cover_delta(Z3_context c, Z3_fixedpoint d, int level, Z3_func_decl pred)
Z3_bool Z3_API Z3_goal_is_decided_unsat(Z3_context c, Z3_goal g)
Return true if the goal contains false, and it is precise or the product of an over approximation...
Z3_ast Z3_API Z3_get_quantifier_body(Z3_context c, Z3_ast a)
Return body of quantifier.
BEGIN_MLAPI_EXCLUDE Z3_constructor Z3_API Z3_mk_constructor(Z3_context c, Z3_symbol name, Z3_symbol recognizer, unsigned num_fields, Z3_symbol const field_names[], Z3_sort_opt const sorts[], unsigned sort_refs[])
Create a constructor.
unsigned Z3_API Z3_get_num_probes(Z3_context c)
Return the number of builtin probes available in Z3.
Z3_ast Z3_API Z3_translate(Z3_context source, Z3_ast a, Z3_context target)
Translate/Copy the AST a from context source to context target. AST a must have been created using co...
void Z3_API Z3_get_version(unsigned *major, unsigned *minor, unsigned *build_number, unsigned *revision_number)
Return Z3 version number information.
Z3_lbool Z3_API Z3_fixedpoint_query(Z3_context c, Z3_fixedpoint d, Z3_ast query)
Pose a query against the asserted rules.
Z3_sort Z3_API Z3_mk_bool_sort(Z3_context c)
Create the Boolean type.
void Z3_API Z3_assert_cnstr(Z3_context c, Z3_ast a)
Assert a constraint into the logical context.
Z3_ast Z3_API Z3_mk_bvsub_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2)
Create a predicate that checks that the bit-wise signed subtraction of t1 and t2 does not overflow...
void Z3_API Z3_set_new_assignment_callback(Z3_theory t, Z3_theory_ast_bool_callback_fptr f)
Set a callback that is invoked when a theory predicate is assigned to true/false by Z3...
Z3_string Z3_API Z3_optimize_get_reason_unknown(Z3_context c, Z3_optimize d)
Retrieve a string that describes the last status returned by Z3_optimize_check.
Z3_ast Z3_API Z3_mk_quantifier(Z3_context c, Z3_bool is_forall, unsigned weight, unsigned num_patterns, Z3_pattern const patterns[], unsigned num_decls, Z3_sort const sorts[], Z3_symbol const decl_names[], Z3_ast body)
Create a quantifier - universal or existential, with pattern hints. See the documentation for Z3_mk_f...
Z3_ast Z3_API Z3_mk_bvudiv(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned division.
void Z3_theory_ast_bool_callback_fptr(Z3_theory, Z3_ast, Z3_bool)
Definition: z3_api.h:5103
Z3_search_failure Z3_API Z3_get_search_failure(Z3_context c)
Retrieve reason for search failure.
void Z3_API Z3_params_inc_ref(Z3_context c, Z3_params p)
Increment the reference counter of the given parameter set.
Z3_ast Z3_API Z3_mk_forall_const(Z3_context c, unsigned weight, unsigned num_bound, Z3_app const bound[], unsigned num_patterns, Z3_pattern const patterns[], Z3_ast body)
Create a universal quantifier using a list of constants that will form the set of bound variables...
void Z3_theory_ast_ast_callback_fptr(Z3_theory, Z3_ast, Z3_ast)
Definition: z3_api.h:5105
Z3_string Z3_API Z3_tactic_get_help(Z3_context c, Z3_tactic t)
Return a string containing a description of parameters accepted by the given tactic.
void Z3_API Z3_params_set_symbol(Z3_context c, Z3_params p, Z3_symbol k, Z3_symbol v)
Add a symbol parameter k with value v to the parameter set p.
void Z3_API Z3_global_param_reset_all(void)
Restore the value of all global (and module) parameters. This command will not affect already created...
Z3_string Z3_API Z3_ast_map_to_string(Z3_context c, Z3_ast_map m)
Convert the given map into a string.
void Z3_API Z3_model_inc_ref(Z3_context c, Z3_model m)
Increment the reference counter of the given model.
unsigned Z3_API Z3_optimize_minimize(Z3_context c, Z3_optimize o, Z3_ast t)
Add a minimization constraint.
void Z3_theory_ast_callback_fptr(Z3_theory, Z3_ast)
Definition: z3_api.h:5101
Z3_string Z3_API Z3_simplify_get_help(Z3_context c)
Return a string describing all available parameters.
Z3_ast Z3_API Z3_mk_eq(Z3_context c, Z3_ast l, Z3_ast r)
Create an AST node representing l = r.
void Z3_error_handler(Z3_context c, Z3_error_code e)
Z3 custom error handler (See Z3_set_error_handler).
Definition: z3_api.h:1367
unsigned Z3_API Z3_ast_map_size(Z3_context c, Z3_ast_map m)
Return the size of the given map.
Z3_ast Z3_API Z3_mk_atmost(Z3_context c, unsigned num_args, Z3_ast const args[], unsigned k)
Pseudo-Boolean relations.
void Z3_API Z3_finalize_memory(void)
Destroy all allocated resources.
Z3_symbol Z3_API Z3_mk_int_symbol(Z3_context c, int i)
Create a Z3 symbol using an integer.
Z3_bool Z3_API Z3_is_as_array(Z3_context c, Z3_ast a)
The (_ as-array f) AST node is a construct for assigning interpretations for arrays in Z3...
Z3_ast Z3_API Z3_mk_bvmul(Z3_context c, Z3_ast t1, Z3_ast t2)
Standard two&#39;s complement multiplication.
Z3_param_descrs Z3_API Z3_solver_get_param_descrs(Z3_context c, Z3_solver s)
Return the parameter description set for the given solver object.
unsigned Z3_API Z3_func_interp_get_num_entries(Z3_context c, Z3_func_interp f)
Return the number of entries in the given function interpretation.
Z3_ast Z3_API Z3_mk_extract(Z3_context c, unsigned high, unsigned low, Z3_ast t1)
Extract the bits high down to low from a bitvector of size m to yield a new bitvector of size n...
void Z3_API Z3_ast_map_reset(Z3_context c, Z3_ast_map m)
Remove all keys from the given map.
Z3_ast Z3_API Z3_mk_bvneg(Z3_context c, Z3_ast t1)
Standard two&#39;s complement unary minus.
double Z3_API Z3_stats_get_double_value(Z3_context c, Z3_stats s, unsigned idx)
Return the double value of the given statistical data.
void Z3_API Z3_fixedpoint_add_fact(Z3_context c, Z3_fixedpoint d, Z3_func_decl r, unsigned num_args, unsigned args[])
Add a Database fact.
Z3_ast Z3_API Z3_mk_bvurem(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned remainder.
Z3_ast Z3_API Z3_mk_bvxor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise exclusive-or.
Z3_ast Z3_API Z3_get_algebraic_number_lower(Z3_context c, Z3_ast a, unsigned precision)
Return a lower bound for the given real algebraic number. The interval isolating the number is smalle...
Z3_ast Z3_API Z3_mk_ite(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_ast t3)
Create an AST node representing an if-then-else: ite(t1, t2, t3).
Z3_solver Z3_API Z3_mk_solver_from_tactic(Z3_context c, Z3_tactic t)
Create a new solver that is implemented using the given tactic. The solver supports the commands Z3_s...
Z3_func_entry Z3_API Z3_func_interp_get_entry(Z3_context c, Z3_func_interp f, unsigned i)
Return a "point" of the given function intepretation. It represents the value of f in a particular po...
Z3_string Z3_API Z3_benchmark_to_smtlib_string(Z3_context c, Z3_string name, Z3_string logic, Z3_string status, Z3_string attributes, unsigned num_assumptions, Z3_ast const assumptions[], Z3_ast formula)
Convert the given benchmark into SMT-LIB formatted string.
int Z3_API Z3_get_decl_int_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the integer value associated with an integer parameter.
unsigned Z3_API Z3_get_arity(Z3_context c, Z3_func_decl d)
Alias for Z3_get_domain_size.
Z3_sort Z3_API Z3_get_sort(Z3_context c, Z3_ast a)
Return the sort of an AST node.
Z3_ast Z3_API Z3_mk_bvadd_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_bool is_signed)
Create a predicate that checks that the bit-wise addition of t1 and t2 does not overflow.
Z3_ast Z3_API Z3_mk_rotate_left(Z3_context c, unsigned i, Z3_ast t1)
Rotate bits of t1 to the left i times.
Z3_string Z3_API Z3_func_decl_to_string(Z3_context c, Z3_func_decl d)
void Z3_API Z3_get_array_value(Z3_context c, Z3_model m, Z3_ast v, unsigned num_entries, Z3_ast indices[], Z3_ast values[], Z3_ast *else_value)
An array values is represented as a dictionary plus a default (else) value. This function returns the...
void Z3_API Z3_params_set_bool(Z3_context c, Z3_params p, Z3_symbol k, Z3_bool v)
Add a Boolean parameter k with value v to the parameter set p.
void Z3_API Z3_probe_dec_ref(Z3_context c, Z3_probe p)
Decrement the reference counter of the given probe.
Z3_constructor_list Z3_API Z3_mk_constructor_list(Z3_context c, unsigned num_constructors, Z3_constructor const constructors[])
Create list of constructors.
Z3_ast Z3_API Z3_goal_formula(Z3_context c, Z3_goal g, unsigned idx)
Return a formula from the given goal.
Z3_symbol Z3_API Z3_get_sort_name(Z3_context c, Z3_sort d)
Return the sort name as a symbol.
Z3_search_failure
The different kinds of search failure types.
Definition: z3_api.h:1263
void Z3_API Z3_fixedpoint_set_params(Z3_context c, Z3_fixedpoint f, Z3_params p)
Set parameters on fixedpoint context.
void Z3_API Z3_set_delete_callback(Z3_theory t, Z3_theory_callback_fptr f)
Set a callback that is invoked when theory t is deleted. This callback should be used to delete exter...
Z3_bool Z3_API Z3_get_numeral_rational_int64(Z3_context c, Z3_ast v, __int64 *num, __int64 *den)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit as a rational number as mach...
void Z3_API Z3_query_constructor(Z3_context c, Z3_constructor constr, unsigned num_fields, Z3_func_decl *constructor, Z3_func_decl *tester, Z3_func_decl accessors[])
Query constructor for declared functions.
void Z3_API Z3_disable_literal(Z3_context c, Z3_literals lbls, unsigned idx)
Disable label.
void Z3_API Z3_fixedpoint_set_predicate_representation(Z3_context c, Z3_fixedpoint d, Z3_func_decl f, unsigned num_relations, Z3_symbol const relation_kinds[])
Configure the predicate representation.
Z3_string Z3_API Z3_probe_get_descr(Z3_context c, Z3_string name)
Return a string containing a description of the probe with the given name.
Z3_ast Z3_API Z3_mk_map(Z3_context c, Z3_func_decl f, unsigned n, Z3_ast const *args)
map f on the the argument arrays.
Z3_ast Z3_API Z3_mk_bvadd(Z3_context c, Z3_ast t1, Z3_ast t2)
Standard two&#39;s complement addition.
Z3_bool Z3_API Z3_global_param_get(Z3_string param_id, Z3_string_ptr param_value)
Get a global (or module) parameter.
void Z3_API Z3_fixedpoint_register_relation(Z3_context c, Z3_fixedpoint d, Z3_func_decl f)
Register relation as Fixedpoint defined. Fixedpoint defined relations have least-fixedpoint semantics...
void Z3_API Z3_theory_assume_eq(Z3_theory t, Z3_ast lhs, Z3_ast rhs)
Inform to the logical context that lhs and rhs have the same interpretation in the model being built ...
DEFINE_VOID(Z3_theory_data)
Z3_bool Z3_API Z3_is_well_sorted(Z3_context c, Z3_ast t)
Return true if the given expression t is well sorted.
void Z3_API Z3_solver_dec_ref(Z3_context c, Z3_solver s)
Decrement the reference counter of the given solver.
void Z3_API Z3_inc_ref(Z3_context c, Z3_ast a)
Increment the reference counter of the given AST. The context c should have been created using Z3_mk_...
Z3_bool Z3_API Z3_get_numeral_int64(Z3_context c, Z3_ast v, __int64 *i)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit in a machine __int64 int...
Z3_ast Z3_API Z3_datatype_update_field(Z3_context c, Z3_func_decl field_access, Z3_ast t, Z3_ast value)
Update record field with a value.
Z3_ast Z3_API Z3_mk_numeral(Z3_context c, Z3_string numeral, Z3_sort ty)
Create a numeral of a given sort.
void Z3_API Z3_set_init_search_callback(Z3_theory t, Z3_theory_callback_fptr f)
Set a callback that is invoked when Z3 starts searching for a satisfying assignment.
void Z3_API Z3_func_entry_dec_ref(Z3_context c, Z3_func_entry e)
Decrement the reference counter of the given Z3_func_entry object.
unsigned Z3_API Z3_get_num_literals(Z3_context c, Z3_literals lbls)
Retrieve the number of label symbols that were returned.
Z3_bool Z3_API Z3_stats_is_double(Z3_context c, Z3_stats s, unsigned idx)
Return Z3_TRUE if the given statistical data is a double.
Z3_string Z3_API Z3_tactic_get_descr(Z3_context c, Z3_string name)
Return a string containing a description of the tactic with the given name.
Z3_decl_kind
The different kinds of interpreted function kinds.
Definition: z3_api.h:988
unsigned Z3_API Z3_optimize_maximize(Z3_context c, Z3_optimize o, Z3_ast t)
Add a maximization constraint.
Z3_ast Z3_API Z3_mk_select(Z3_context c, Z3_ast a, Z3_ast i)
Array read. The argument a is the array and i is the index of the array that gets read...
unsigned Z3_API Z3_get_model_num_funcs(Z3_context c, Z3_model m)
Return the number of function interpretations in the given model.
unsigned Z3_API Z3_apply_result_get_num_subgoals(Z3_context c, Z3_apply_result r)
Return the number of subgoals in the Z3_apply_result object returned by Z3_tactic_apply.
Z3_ast Z3_API Z3_fixedpoint_get_answer(Z3_context c, Z3_fixedpoint d)
Retrieve a formula that encodes satisfying answers to the query.
Z3_func_decl Z3_API Z3_get_model_constant(Z3_context c, Z3_model m, unsigned i)
Return the i-th constant in the given model.
void Z3_API Z3_ast_vector_set(Z3_context c, Z3_ast_vector v, unsigned i, Z3_ast a)
Update position i of the AST vector v with the AST a.
Z3_string Z3_API Z3_fixedpoint_to_string(Z3_context c, Z3_fixedpoint f, unsigned num_queries, Z3_ast queries[])
Print the current rules and background axioms as a string.
Z3_lbool Z3_API Z3_fixedpoint_query_relations(Z3_context c, Z3_fixedpoint d, unsigned num_relations, Z3_func_decl const relations[])
Pose multiple queries against the asserted rules.
Z3_ast Z3_API Z3_get_denominator(Z3_context c, Z3_ast a)
Return the denominator (as a numeral AST) of a numeral AST of sort Real.
Z3_theory Z3_API Z3_mk_theory(Z3_context c, Z3_string th_name, Z3_theory_data data)
Create a new user defined theory. The new theory will be identified by the name th_name. A theory must be created before asserting any assertion to the given context. Return NULL in case of failure.
Z3_tactic Z3_API Z3_tactic_fail_if_not_decided(Z3_context c)
Return a tactic that fails if the goal is not trivially satisfiable (i.e., empty) or trivially unsati...
Z3_probe Z3_API Z3_probe_or(Z3_context x, Z3_probe p1, Z3_probe p2)
Return a probe that evaluates to "true" when p1 or p2 evaluates to true.
void Z3_API Z3_set_reduce_distinct_callback(Z3_theory t, Z3_reduce_distinct_callback_fptr f)
Set a callback for simplifying the atom distinct(s_1, ..., s_n), when the sort of s_1...
void Z3_API Z3_parse_smtlib_file(Z3_context c, Z3_string file_name, unsigned num_sorts, Z3_symbol const sort_names[], Z3_sort const sorts[], unsigned num_decls, Z3_symbol const decl_names[], Z3_func_decl const decls[])
Similar to Z3_parse_smtlib_string, but reads the benchmark from a file.
Z3_ast Z3_API Z3_mk_bvadd_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2)
Create a predicate that checks that the bit-wise signed addition of t1 and t2 does not underflow...
Z3_tactic Z3_API Z3_tactic_fail(Z3_context c)
Return a tactic that always fails.
Z3_ast Z3_API Z3_mk_iff(Z3_context c, Z3_ast t1, Z3_ast t2)
Create an AST node representing t1 iff t2.
Z3_func_decl Z3_API Z3_get_datatype_sort_constructor(Z3_context c, Z3_sort t, unsigned idx)
Return idx&#39;th constructor.
unsigned Z3_API Z3_solver_get_num_scopes(Z3_context c, Z3_solver s)
Return the number of backtracking points.
void Z3_API Z3_tactic_dec_ref(Z3_context c, Z3_tactic g)
Decrement the reference counter of the given tactic.
#define Z3_ast_opt
Definition: z3_api.h:34
Z3_sort Z3_API Z3_mk_enumeration_sort(Z3_context c, Z3_symbol name, unsigned n, Z3_symbol const enum_names[], Z3_func_decl enum_consts[], Z3_func_decl enum_testers[])
Create a enumeration sort.
void Z3_API Z3_soft_check_cancel(Z3_context c)
Cancel an ongoing check.
Z3_ast Z3_API Z3_mk_label(Z3_context c, Z3_symbol s, Z3_bool is_pos, Z3_ast f)
Create a labeled formula.
void Z3_API Z3_ast_vector_push(Z3_context c, Z3_ast_vector v, Z3_ast a)
Add the AST a in the end of the AST vector v. The size of v is increased by one.
void Z3_API Z3_set_reduce_app_callback(Z3_theory t, Z3_reduce_app_callback_fptr f)
Set a callback for simplifying operators of the given theory. The callback f is invoked by Z3&#39;s simpl...
void Z3_API Z3_param_descrs_dec_ref(Z3_context c, Z3_param_descrs p)
Decrement the reference counter of the given parameter description set.
Z3_sort Z3_API Z3_get_decl_sort_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the sort value associated with a sort parameter.
Z3_bool Z3_API Z3_theory_is_value(Z3_theory t, Z3_ast n)
Return Z3_TRUE if n is an interpreted theory value.
Z3_bool Z3_API Z3_eval_func_decl(Z3_context c, Z3_model m, Z3_func_decl decl, Z3_ast *v)
Return the value of the given constant or function in the given model.
void Z3_fixedpoint_reduce_assign_callback_fptr(void *, Z3_func_decl, unsigned, Z3_ast const [], unsigned, Z3_ast const [])
The following utilities allows adding user-defined domains.
Definition: z3_api.h:5765
Z3_context Z3_API Z3_theory_get_context(Z3_theory t)
Return the context where the given theory is installed.
void Z3_API Z3_theory_assert_axiom(Z3_theory t, Z3_ast ax)
Assert a theory axiom/lemmas during the search.
Z3_ast Z3_API Z3_mk_zero_ext(Z3_context c, unsigned i, Z3_ast t1)
Extend the given bit-vector with zeros to the (unsigned) equivalent bitvector of size m+i...
Z3_string Z3_API Z3_model_to_string(Z3_context c, Z3_model m)
Convert the given model into a string.
const char * Z3_string
Z3 string type. It is just an alias for const char *.
Definition: z3_api.h:119
Z3_ast Z3_API Z3_mk_fresh_const(Z3_context c, Z3_string prefix, Z3_sort ty)
Declare and create a fresh constant.