Z3
 
Loading...
Searching...
No Matches
z3_api.h
Go to the documentation of this file.
1/*++
2 Copyright (c) 2015 Microsoft Corporation
3--*/
4
5#pragma once
6
7
50typedef const char * Z3_string;
51typedef char const* Z3_char_ptr;
53
57typedef enum
58{
63
76
77
105
128
151
988typedef enum {
989 // Basic
990 Z3_OP_TRUE = 0x100,
1002
1003 // Arithmetic
1004 Z3_OP_ANUM = 0x200,
1023
1024 // Arrays & Sets
1037
1038 // Bit-vectors
1039 Z3_OP_BNUM = 0x400,
1046
1052
1053 // special functions to record the division by 0 cases
1054 // these are internal functions
1060
1069
1077
1083
1087
1095
1102
1111
1112 // Proofs
1155
1156 // Relational algebra
1172
1173 // Sequences
1197
1198 // strings
1207
1208 // regular expressions
1226
1227 // char
1234
1235 // Auxiliary
1238
1239 // Datatypes
1245
1246 // Pseudo Booleans
1252
1253 // Special relations
1260
1261
1262 // Floating-Point Arithmetic
1268
1275
1288
1301
1308
1310
1313
1314 // Finite Sets
1328
1331
1334
1356
1369
1370
1404
1436
1439#ifdef __cplusplus
1440extern "C" {
1441#endif // __cplusplus
1442
1469 void Z3_API Z3_global_param_set(Z3_string param_id, Z3_string param_value);
1470
1471
1480 void Z3_API Z3_global_param_reset_all(void);
1481
1494 bool Z3_API Z3_global_param_get(Z3_string param_id, Z3_string_ptr param_value);
1495
1531 Z3_config Z3_API Z3_mk_config(void);
1532
1539 void Z3_API Z3_del_config(Z3_config c);
1540
1549 void Z3_API Z3_set_param_value(Z3_config c, Z3_string param_id, Z3_string param_value);
1550
1585 Z3_context Z3_API Z3_mk_context(Z3_config c);
1586
1608 Z3_context Z3_API Z3_mk_context_rc(Z3_config c);
1609
1616 void Z3_API Z3_del_context(Z3_context c);
1617
1624 void Z3_API Z3_inc_ref(Z3_context c, Z3_ast a);
1625
1632 void Z3_API Z3_dec_ref(Z3_context c, Z3_ast a);
1633
1640 void Z3_API Z3_update_param_value(Z3_context c, Z3_string param_id, Z3_string param_value);
1641
1642
1647 Z3_param_descrs Z3_API Z3_get_global_param_descrs(Z3_context c);
1648
1654 void Z3_API Z3_interrupt(Z3_context c);
1655
1656
1663 void Z3_API Z3_enable_concurrent_dec_ref(Z3_context c);
1664
1665
1680 Z3_params Z3_API Z3_mk_params(Z3_context c);
1681
1686 void Z3_API Z3_params_inc_ref(Z3_context c, Z3_params p);
1687
1692 void Z3_API Z3_params_dec_ref(Z3_context c, Z3_params p);
1693
1698 void Z3_API Z3_params_set_bool(Z3_context c, Z3_params p, Z3_symbol k, bool v);
1699
1704 void Z3_API Z3_params_set_uint(Z3_context c, Z3_params p, Z3_symbol k, unsigned v);
1705
1710 void Z3_API Z3_params_set_double(Z3_context c, Z3_params p, Z3_symbol k, double v);
1711
1716 void Z3_API Z3_params_set_symbol(Z3_context c, Z3_params p, Z3_symbol k, Z3_symbol v);
1717
1723 Z3_string Z3_API Z3_params_to_string(Z3_context c, Z3_params p);
1724
1731 void Z3_API Z3_params_validate(Z3_context c, Z3_params p, Z3_param_descrs d);
1732
1742 void Z3_API Z3_param_descrs_inc_ref(Z3_context c, Z3_param_descrs p);
1743
1748 void Z3_API Z3_param_descrs_dec_ref(Z3_context c, Z3_param_descrs p);
1749
1754 Z3_param_kind Z3_API Z3_param_descrs_get_kind(Z3_context c, Z3_param_descrs p, Z3_symbol n);
1755
1760 unsigned Z3_API Z3_param_descrs_size(Z3_context c, Z3_param_descrs p);
1761
1768 Z3_symbol Z3_API Z3_param_descrs_get_name(Z3_context c, Z3_param_descrs p, unsigned i);
1769
1774 Z3_string Z3_API Z3_param_descrs_get_documentation(Z3_context c, Z3_param_descrs p, Z3_symbol s);
1775
1781 Z3_string Z3_API Z3_param_descrs_to_string(Z3_context c, Z3_param_descrs p);
1782
1800 Z3_symbol Z3_API Z3_mk_int_symbol(Z3_context c, int i);
1801
1811 Z3_symbol Z3_API Z3_mk_string_symbol(Z3_context c, Z3_string s);
1812
1824 Z3_sort Z3_API Z3_mk_uninterpreted_sort(Z3_context c, Z3_symbol s);
1825
1834 Z3_sort Z3_API Z3_mk_type_variable(Z3_context c, Z3_symbol s);
1835
1842 Z3_sort Z3_API Z3_mk_bool_sort(Z3_context c);
1843
1854 Z3_sort Z3_API Z3_mk_int_sort(Z3_context c);
1855
1862 Z3_sort Z3_API Z3_mk_real_sort(Z3_context c);
1863
1872 Z3_sort Z3_API Z3_mk_bv_sort(Z3_context c, unsigned sz);
1873
1886 Z3_sort Z3_API Z3_mk_finite_domain_sort(Z3_context c, Z3_symbol name, uint64_t size);
1887
1898 Z3_sort Z3_API Z3_mk_array_sort(Z3_context c, Z3_sort domain, Z3_sort range);
1899
1907 Z3_sort Z3_API Z3_mk_array_sort_n(Z3_context c, unsigned n, Z3_sort const * domain, Z3_sort range);
1908
1924 Z3_sort Z3_API Z3_mk_tuple_sort(Z3_context c,
1925 Z3_symbol mk_tuple_name,
1926 unsigned num_fields,
1927 Z3_symbol const field_names[],
1928 Z3_sort const field_sorts[],
1929 Z3_func_decl * mk_tuple_decl,
1930 Z3_func_decl proj_decl[]);
1931
1952 Z3_sort Z3_API Z3_mk_enumeration_sort(Z3_context c,
1953 Z3_symbol name,
1954 unsigned n,
1955 Z3_symbol const enum_names[],
1956 Z3_func_decl enum_consts[],
1957 Z3_func_decl enum_testers[]);
1958
1976 Z3_sort Z3_API Z3_mk_list_sort(Z3_context c,
1977 Z3_symbol name,
1978 Z3_sort elem_sort,
1979 Z3_func_decl* nil_decl,
1980 Z3_func_decl* is_nil_decl,
1981 Z3_func_decl* cons_decl,
1982 Z3_func_decl* is_cons_decl,
1983 Z3_func_decl* head_decl,
1984 Z3_func_decl* tail_decl
1985 );
1986
2005 Z3_constructor Z3_API Z3_mk_constructor(Z3_context c,
2006 Z3_symbol name,
2007 Z3_symbol recognizer,
2008 unsigned num_fields,
2009 Z3_symbol const field_names[],
2010 Z3_sort const sorts[],
2011 unsigned sort_refs[]
2012 );
2013
2021 unsigned Z3_API Z3_constructor_num_fields(Z3_context c, Z3_constructor constr);
2022
2032 void Z3_API Z3_del_constructor(Z3_context c, Z3_constructor constr);
2033
2048 Z3_sort Z3_API Z3_mk_datatype(Z3_context c,
2049 Z3_symbol name,
2050 unsigned num_constructors,
2051 Z3_constructor constructors[]);
2052
2072 Z3_sort Z3_API Z3_mk_polymorphic_datatype(Z3_context c,
2073 Z3_symbol name,
2074 unsigned num_parameters,
2075 Z3_sort parameters[],
2076 unsigned num_constructors,
2077 Z3_constructor constructors[]);
2078
2094 Z3_sort Z3_API Z3_mk_datatype_sort(Z3_context c, Z3_symbol name, unsigned num_params, Z3_sort const params[]);
2095
2107 Z3_constructor_list Z3_API Z3_mk_constructor_list(Z3_context c,
2108 unsigned num_constructors,
2109 Z3_constructor const constructors[]);
2110
2122 void Z3_API Z3_del_constructor_list(Z3_context c, Z3_constructor_list clist);
2123
2138 void Z3_API Z3_mk_datatypes(Z3_context c,
2139 unsigned num_sorts,
2140 Z3_symbol const sort_names[],
2141 Z3_sort sorts[],
2142 Z3_constructor_list constructor_lists[]);
2143
2157 void Z3_API Z3_query_constructor(Z3_context c,
2158 Z3_constructor constr,
2159 unsigned num_fields,
2160 Z3_func_decl* constructor,
2161 Z3_func_decl* tester,
2162 Z3_func_decl accessors[]);
2163
2187 Z3_func_decl Z3_API Z3_mk_func_decl(Z3_context c, Z3_symbol s,
2188 unsigned domain_size, Z3_sort const domain[],
2189 Z3_sort range);
2190
2191
2192
2201 Z3_ast Z3_API Z3_mk_app(
2202 Z3_context c,
2203 Z3_func_decl d,
2204 unsigned num_args,
2205 Z3_ast const args[]);
2206
2221 Z3_ast Z3_API Z3_mk_const(Z3_context c, Z3_symbol s, Z3_sort ty);
2222
2234 Z3_func_decl Z3_API Z3_mk_fresh_func_decl(Z3_context c, Z3_string prefix,
2235 unsigned domain_size, Z3_sort const domain[],
2236 Z3_sort range);
2237
2252 Z3_ast Z3_API Z3_mk_fresh_const(Z3_context c, Z3_string prefix, Z3_sort ty);
2253
2254
2273 Z3_func_decl Z3_API Z3_mk_rec_func_decl(Z3_context c, Z3_symbol s,
2274 unsigned domain_size, Z3_sort const domain[],
2275 Z3_sort range);
2276
2292 void Z3_API Z3_add_rec_def(Z3_context c, Z3_func_decl f, unsigned n, Z3_ast args[], Z3_ast body);
2293
2302 Z3_ast Z3_API Z3_mk_true(Z3_context c);
2303
2308 Z3_ast Z3_API Z3_mk_false(Z3_context c);
2309
2316 Z3_ast Z3_API Z3_mk_eq(Z3_context c, Z3_ast l, Z3_ast r);
2317
2329 Z3_ast Z3_API Z3_mk_distinct(Z3_context c, unsigned num_args, Z3_ast const args[]);
2330
2337 Z3_ast Z3_API Z3_mk_not(Z3_context c, Z3_ast a);
2338
2346 Z3_ast Z3_API Z3_mk_ite(Z3_context c, Z3_ast t1, Z3_ast t2, Z3_ast t3);
2347
2354 Z3_ast Z3_API Z3_mk_iff(Z3_context c, Z3_ast t1, Z3_ast t2);
2355
2362 Z3_ast Z3_API Z3_mk_implies(Z3_context c, Z3_ast t1, Z3_ast t2);
2363
2370 Z3_ast Z3_API Z3_mk_xor(Z3_context c, Z3_ast t1, Z3_ast t2);
2371
2381 Z3_ast Z3_API Z3_mk_and(Z3_context c, unsigned num_args, Z3_ast const args[]);
2382
2392 Z3_ast Z3_API Z3_mk_or(Z3_context c, unsigned num_args, Z3_ast const args[]);
2406 Z3_ast Z3_API Z3_mk_add(Z3_context c, unsigned num_args, Z3_ast const args[]);
2407
2418 Z3_ast Z3_API Z3_mk_mul(Z3_context c, unsigned num_args, Z3_ast const args[]);
2419
2429 Z3_ast Z3_API Z3_mk_sub(Z3_context c, unsigned num_args, Z3_ast const args[]);
2430
2437 Z3_ast Z3_API Z3_mk_unary_minus(Z3_context c, Z3_ast arg);
2438
2447 Z3_ast Z3_API Z3_mk_div(Z3_context c, Z3_ast arg1, Z3_ast arg2);
2448
2455 Z3_ast Z3_API Z3_mk_mod(Z3_context c, Z3_ast arg1, Z3_ast arg2);
2456
2463 Z3_ast Z3_API Z3_mk_rem(Z3_context c, Z3_ast arg1, Z3_ast arg2);
2464
2471 Z3_ast Z3_API Z3_mk_power(Z3_context c, Z3_ast arg1, Z3_ast arg2);
2472
2477 Z3_ast Z3_API Z3_mk_abs(Z3_context c, Z3_ast arg);
2478
2485 Z3_ast Z3_API Z3_mk_lt(Z3_context c, Z3_ast t1, Z3_ast t2);
2486
2493 Z3_ast Z3_API Z3_mk_le(Z3_context c, Z3_ast t1, Z3_ast t2);
2494
2501 Z3_ast Z3_API Z3_mk_gt(Z3_context c, Z3_ast t1, Z3_ast t2);
2502
2509 Z3_ast Z3_API Z3_mk_ge(Z3_context c, Z3_ast t1, Z3_ast t2);
2510
2519 Z3_ast Z3_API Z3_mk_divides(Z3_context c, Z3_ast t1, Z3_ast t2);
2520
2537 Z3_ast Z3_API Z3_mk_int2real(Z3_context c, Z3_ast t1);
2538
2549 Z3_ast Z3_API Z3_mk_real2int(Z3_context c, Z3_ast t1);
2550
2558 Z3_ast Z3_API Z3_mk_is_int(Z3_context c, Z3_ast t1);
2569 Z3_ast Z3_API Z3_mk_bvnot(Z3_context c, Z3_ast t1);
2570
2577 Z3_ast Z3_API Z3_mk_bvredand(Z3_context c, Z3_ast t1);
2578
2585 Z3_ast Z3_API Z3_mk_bvredor(Z3_context c, Z3_ast t1);
2586
2593 Z3_ast Z3_API Z3_mk_bvand(Z3_context c, Z3_ast t1, Z3_ast t2);
2594
2601 Z3_ast Z3_API Z3_mk_bvor(Z3_context c, Z3_ast t1, Z3_ast t2);
2602
2609 Z3_ast Z3_API Z3_mk_bvxor(Z3_context c, Z3_ast t1, Z3_ast t2);
2610
2617 Z3_ast Z3_API Z3_mk_bvnand(Z3_context c, Z3_ast t1, Z3_ast t2);
2618
2625 Z3_ast Z3_API Z3_mk_bvnor(Z3_context c, Z3_ast t1, Z3_ast t2);
2626
2633 Z3_ast Z3_API Z3_mk_bvxnor(Z3_context c, Z3_ast t1, Z3_ast t2);
2634
2641 Z3_ast Z3_API Z3_mk_bvneg(Z3_context c, Z3_ast t1);
2642
2649 Z3_ast Z3_API Z3_mk_bvadd(Z3_context c, Z3_ast t1, Z3_ast t2);
2650
2657 Z3_ast Z3_API Z3_mk_bvsub(Z3_context c, Z3_ast t1, Z3_ast t2);
2658
2665 Z3_ast Z3_API Z3_mk_bvmul(Z3_context c, Z3_ast t1, Z3_ast t2);
2666
2677 Z3_ast Z3_API Z3_mk_bvudiv(Z3_context c, Z3_ast t1, Z3_ast t2);
2678
2693 Z3_ast Z3_API Z3_mk_bvsdiv(Z3_context c, Z3_ast t1, Z3_ast t2);
2694
2705 Z3_ast Z3_API Z3_mk_bvurem(Z3_context c, Z3_ast t1, Z3_ast t2);
2706
2720 Z3_ast Z3_API Z3_mk_bvsrem(Z3_context c, Z3_ast t1, Z3_ast t2);
2721
2732 Z3_ast Z3_API Z3_mk_bvsmod(Z3_context c, Z3_ast t1, Z3_ast t2);
2733
2740 Z3_ast Z3_API Z3_mk_bvult(Z3_context c, Z3_ast t1, Z3_ast t2);
2741
2756 Z3_ast Z3_API Z3_mk_bvslt(Z3_context c, Z3_ast t1, Z3_ast t2);
2757
2764 Z3_ast Z3_API Z3_mk_bvule(Z3_context c, Z3_ast t1, Z3_ast t2);
2765
2772 Z3_ast Z3_API Z3_mk_bvsle(Z3_context c, Z3_ast t1, Z3_ast t2);
2773
2780 Z3_ast Z3_API Z3_mk_bvuge(Z3_context c, Z3_ast t1, Z3_ast t2);
2781
2788 Z3_ast Z3_API Z3_mk_bvsge(Z3_context c, Z3_ast t1, Z3_ast t2);
2789
2796 Z3_ast Z3_API Z3_mk_bvugt(Z3_context c, Z3_ast t1, Z3_ast t2);
2797
2804 Z3_ast Z3_API Z3_mk_bvsgt(Z3_context c, Z3_ast t1, Z3_ast t2);
2805
2815 Z3_ast Z3_API Z3_mk_concat(Z3_context c, Z3_ast t1, Z3_ast t2);
2816
2824 Z3_ast Z3_API Z3_mk_extract(Z3_context c, unsigned high, unsigned low, Z3_ast t1);
2825
2834 Z3_ast Z3_API Z3_mk_sign_ext(Z3_context c, unsigned i, Z3_ast t1);
2835
2844 Z3_ast Z3_API Z3_mk_zero_ext(Z3_context c, unsigned i, Z3_ast t1);
2845
2852 Z3_ast Z3_API Z3_mk_repeat(Z3_context c, unsigned i, Z3_ast t1);
2853
2861 Z3_ast Z3_API Z3_mk_bit2bool(Z3_context c, unsigned i, Z3_ast t1);
2862
2876 Z3_ast Z3_API Z3_mk_bvshl(Z3_context c, Z3_ast t1, Z3_ast t2);
2877
2891 Z3_ast Z3_API Z3_mk_bvlshr(Z3_context c, Z3_ast t1, Z3_ast t2);
2892
2907 Z3_ast Z3_API Z3_mk_bvashr(Z3_context c, Z3_ast t1, Z3_ast t2);
2908
2915 Z3_ast Z3_API Z3_mk_rotate_left(Z3_context c, unsigned i, Z3_ast t1);
2916
2923 Z3_ast Z3_API Z3_mk_rotate_right(Z3_context c, unsigned i, Z3_ast t1);
2924
2931 Z3_ast Z3_API Z3_mk_ext_rotate_left(Z3_context c, Z3_ast t1, Z3_ast t2);
2932
2939 Z3_ast Z3_API Z3_mk_ext_rotate_right(Z3_context c, Z3_ast t1, Z3_ast t2);
2940
2950 Z3_ast Z3_API Z3_mk_int2bv(Z3_context c, unsigned n, Z3_ast t1);
2951
2963 Z3_ast Z3_API Z3_mk_bv2int(Z3_context c,Z3_ast t1, bool is_signed);
2964
2973 Z3_ast Z3_API Z3_mk_bvadd_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, bool is_signed);
2974
2983 Z3_ast Z3_API Z3_mk_bvadd_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2);
2984
2993 Z3_ast Z3_API Z3_mk_bvsub_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2);
2994
3003 Z3_ast Z3_API Z3_mk_bvsub_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2, bool is_signed);
3004
3013 Z3_ast Z3_API Z3_mk_bvsdiv_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2);
3014
3023 Z3_ast Z3_API Z3_mk_bvneg_no_overflow(Z3_context c, Z3_ast t1);
3024
3033 Z3_ast Z3_API Z3_mk_bvmul_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, bool is_signed);
3034
3043 Z3_ast Z3_API Z3_mk_bvmul_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2);
3060 Z3_ast Z3_API Z3_mk_select(Z3_context c, Z3_ast a, Z3_ast i);
3061
3062
3063
3070 Z3_ast Z3_API Z3_mk_select_n(Z3_context c, Z3_ast a, unsigned n, Z3_ast const* idxs);
3071
3072
3088 Z3_ast Z3_API Z3_mk_store(Z3_context c, Z3_ast a, Z3_ast i, Z3_ast v);
3089
3090
3096 Z3_ast Z3_API Z3_mk_store_n(Z3_context c, Z3_ast a, unsigned n, Z3_ast const* idxs, Z3_ast v);
3097
3109 Z3_ast Z3_API Z3_mk_const_array(Z3_context c, Z3_sort domain, Z3_ast v);
3110
3123 Z3_ast Z3_API Z3_mk_map(Z3_context c, Z3_func_decl f, unsigned n, Z3_ast const* args);
3124
3134 Z3_ast Z3_API Z3_mk_array_default(Z3_context c, Z3_ast array);
3135
3142 Z3_ast Z3_API Z3_mk_as_array(Z3_context c, Z3_func_decl f);
3143
3144
3153 Z3_sort Z3_API Z3_mk_set_sort(Z3_context c, Z3_sort ty);
3154
3159 Z3_ast Z3_API Z3_mk_empty_set(Z3_context c, Z3_sort domain);
3160
3165 Z3_ast Z3_API Z3_mk_full_set(Z3_context c, Z3_sort domain);
3166
3173 Z3_ast Z3_API Z3_mk_set_add(Z3_context c, Z3_ast set, Z3_ast elem);
3174
3181 Z3_ast Z3_API Z3_mk_set_del(Z3_context c, Z3_ast set, Z3_ast elem);
3182
3187 Z3_ast Z3_API Z3_mk_set_union(Z3_context c, unsigned num_args, Z3_ast const args[]);
3188
3193 Z3_ast Z3_API Z3_mk_set_intersect(Z3_context c, unsigned num_args, Z3_ast const args[]);
3194
3199 Z3_ast Z3_API Z3_mk_set_difference(Z3_context c, Z3_ast arg1, Z3_ast arg2);
3200
3205 Z3_ast Z3_API Z3_mk_set_complement(Z3_context c, Z3_ast arg);
3206
3213 Z3_ast Z3_API Z3_mk_set_member(Z3_context c, Z3_ast elem, Z3_ast set);
3214
3219 Z3_ast Z3_API Z3_mk_set_subset(Z3_context c, Z3_ast arg1, Z3_ast arg2);
3220
3228 Z3_ast Z3_API Z3_mk_array_ext(Z3_context c, Z3_ast arg1, Z3_ast arg2);
3237 Z3_sort Z3_API Z3_mk_finite_set_sort(Z3_context c, Z3_sort elem_sort);
3238
3243 bool Z3_API Z3_is_finite_set_sort(Z3_context c, Z3_sort s);
3244
3249 Z3_sort Z3_API Z3_get_finite_set_sort_basis(Z3_context c, Z3_sort s);
3250
3255 Z3_ast Z3_API Z3_mk_finite_set_empty(Z3_context c, Z3_sort set_sort);
3256
3261 Z3_ast Z3_API Z3_mk_finite_set_singleton(Z3_context c, Z3_ast elem);
3262
3267 Z3_ast Z3_API Z3_mk_finite_set_union(Z3_context c, Z3_ast s1, Z3_ast s2);
3268
3273 Z3_ast Z3_API Z3_mk_finite_set_intersect(Z3_context c, Z3_ast s1, Z3_ast s2);
3274
3279 Z3_ast Z3_API Z3_mk_finite_set_difference(Z3_context c, Z3_ast s1, Z3_ast s2);
3280
3285 Z3_ast Z3_API Z3_mk_finite_set_member(Z3_context c, Z3_ast elem, Z3_ast set);
3286
3291 Z3_ast Z3_API Z3_mk_finite_set_size(Z3_context c, Z3_ast set);
3292
3297 Z3_ast Z3_API Z3_mk_finite_set_subset(Z3_context c, Z3_ast s1, Z3_ast s2);
3298
3303 Z3_ast Z3_API Z3_mk_finite_set_map(Z3_context c, Z3_ast f, Z3_ast set);
3304
3309 Z3_ast Z3_API Z3_mk_finite_set_filter(Z3_context c, Z3_ast f, Z3_ast set);
3310
3315 Z3_ast Z3_API Z3_mk_finite_set_range(Z3_context c, Z3_ast low, Z3_ast high);
3332 Z3_ast Z3_API Z3_mk_numeral(Z3_context c, Z3_string numeral, Z3_sort ty);
3333
3334#if 0
3347 Z3_ast Z3_mk_mpz_numeral(Z3_context c, bool sign, unsigned n, unsigned const nums[], Z3_sort s);
3348
3364 Z3_ast Z3_mk_mpq_numeral(Z3_context c, bool sign, unsigned n, unsigned const nums[], unsigned d, unsigned const dens[]);
3365#endif
3366
3382 Z3_ast Z3_API Z3_mk_real(Z3_context c, int num, int den);
3383
3390 Z3_ast Z3_API Z3_mk_real_int64(Z3_context c, int64_t num, int64_t den);
3391
3401 Z3_ast Z3_API Z3_mk_int(Z3_context c, int v, Z3_sort ty);
3402
3412 Z3_ast Z3_API Z3_mk_unsigned_int(Z3_context c, unsigned v, Z3_sort ty);
3413
3423 Z3_ast Z3_API Z3_mk_int64(Z3_context c, int64_t v, Z3_sort ty);
3424
3434 Z3_ast Z3_API Z3_mk_unsigned_int64(Z3_context c, uint64_t v, Z3_sort ty);
3435
3441 Z3_ast Z3_API Z3_mk_bv_numeral(Z3_context c, unsigned sz, bool const* bits);
3442
3452 Z3_sort Z3_API Z3_mk_seq_sort(Z3_context c, Z3_sort s);
3453
3458 bool Z3_API Z3_is_seq_sort(Z3_context c, Z3_sort s);
3459
3464 Z3_sort Z3_API Z3_get_seq_sort_basis(Z3_context c, Z3_sort s);
3465
3470 Z3_sort Z3_API Z3_mk_re_sort(Z3_context c, Z3_sort seq);
3471
3476 bool Z3_API Z3_is_re_sort(Z3_context c, Z3_sort s);
3477
3482 Z3_sort Z3_API Z3_get_re_sort_basis(Z3_context c, Z3_sort s);
3483
3492 Z3_sort Z3_API Z3_mk_string_sort(Z3_context c);
3493
3502 Z3_sort Z3_API Z3_mk_char_sort(Z3_context c);
3503
3508 bool Z3_API Z3_is_string_sort(Z3_context c, Z3_sort s);
3509
3514 bool Z3_API Z3_is_char_sort(Z3_context c, Z3_sort s);
3515
3524 Z3_ast Z3_API Z3_mk_string(Z3_context c, Z3_string s);
3525
3533 Z3_ast Z3_API Z3_mk_lstring(Z3_context c, unsigned len, Z3_string s);
3534
3541 Z3_ast Z3_API Z3_mk_u32string(Z3_context c, unsigned len, unsigned const chars[]);
3542
3547 bool Z3_API Z3_is_string(Z3_context c, Z3_ast s);
3548
3556 Z3_string Z3_API Z3_get_string(Z3_context c, Z3_ast s);
3557
3566 Z3_char_ptr Z3_API Z3_get_lstring(Z3_context c, Z3_ast s, unsigned* length);
3567
3574 unsigned Z3_API Z3_get_string_length(Z3_context c, Z3_ast s);
3575
3584 void Z3_API Z3_get_string_contents(Z3_context c, Z3_ast s, unsigned length, unsigned contents[]);
3585
3592 Z3_ast Z3_API Z3_mk_seq_empty(Z3_context c, Z3_sort seq);
3593
3598 Z3_ast Z3_API Z3_mk_seq_unit(Z3_context c, Z3_ast a);
3599
3606 Z3_ast Z3_API Z3_mk_seq_concat(Z3_context c, unsigned n, Z3_ast const args[]);
3607
3614 Z3_ast Z3_API Z3_mk_seq_prefix(Z3_context c, Z3_ast prefix, Z3_ast s);
3615
3622 Z3_ast Z3_API Z3_mk_seq_suffix(Z3_context c, Z3_ast suffix, Z3_ast s);
3623
3630 Z3_ast Z3_API Z3_mk_seq_contains(Z3_context c, Z3_ast container, Z3_ast containee);
3631
3632
3639 Z3_ast Z3_API Z3_mk_str_lt(Z3_context c, Z3_ast prefix, Z3_ast s);
3640
3647 Z3_ast Z3_API Z3_mk_str_le(Z3_context c, Z3_ast prefix, Z3_ast s);
3648
3653 Z3_ast Z3_API Z3_mk_seq_extract(Z3_context c, Z3_ast s, Z3_ast offset, Z3_ast length);
3654
3659 Z3_ast Z3_API Z3_mk_seq_replace(Z3_context c, Z3_ast s, Z3_ast src, Z3_ast dst);
3660
3665 Z3_ast Z3_API Z3_mk_seq_replace_all(Z3_context c, Z3_ast s, Z3_ast src, Z3_ast dst);
3666
3671 Z3_ast Z3_API Z3_mk_seq_replace_re(Z3_context c, Z3_ast s, Z3_ast re, Z3_ast dst);
3672
3677 Z3_ast Z3_API Z3_mk_seq_replace_re_all(Z3_context c, Z3_ast s, Z3_ast re, Z3_ast dst);
3678
3684 Z3_ast Z3_API Z3_mk_seq_at(Z3_context c, Z3_ast s, Z3_ast index);
3685
3691 Z3_ast Z3_API Z3_mk_seq_nth(Z3_context c, Z3_ast s, Z3_ast index);
3692
3698 Z3_ast Z3_API Z3_mk_seq_power(Z3_context c, Z3_ast s, Z3_ast n);
3699
3704 Z3_ast Z3_API Z3_mk_seq_length(Z3_context c, Z3_ast s);
3705
3706
3713 Z3_ast Z3_API Z3_mk_seq_index(Z3_context c, Z3_ast s, Z3_ast substr, Z3_ast offset);
3714
3719 Z3_ast Z3_API Z3_mk_seq_last_index(Z3_context c, Z3_ast s, Z3_ast substr);
3720
3724 Z3_ast Z3_API Z3_mk_seq_map(Z3_context c, Z3_ast f, Z3_ast s);
3725
3729 Z3_ast Z3_API Z3_mk_seq_mapi(Z3_context c, Z3_ast f, Z3_ast i, Z3_ast s);
3730
3734 Z3_ast Z3_API Z3_mk_seq_foldl(Z3_context c, Z3_ast f, Z3_ast a, Z3_ast s);
3735
3739 Z3_ast Z3_API Z3_mk_seq_foldli(Z3_context c, Z3_ast f, Z3_ast i, Z3_ast a, Z3_ast s);
3740
3745 Z3_ast Z3_API Z3_mk_str_to_int(Z3_context c, Z3_ast s);
3746
3747
3752 Z3_ast Z3_API Z3_mk_int_to_str(Z3_context c, Z3_ast s);
3753
3754
3759 Z3_ast Z3_API Z3_mk_string_to_code(Z3_context c, Z3_ast a);
3760
3765 Z3_ast Z3_API Z3_mk_string_from_code(Z3_context c, Z3_ast a);
3766
3771 Z3_ast Z3_API Z3_mk_ubv_to_str(Z3_context c, Z3_ast s);
3772
3777 Z3_ast Z3_API Z3_mk_sbv_to_str(Z3_context c, Z3_ast s);
3778
3783 Z3_ast Z3_API Z3_mk_seq_to_re(Z3_context c, Z3_ast seq);
3784
3789 Z3_ast Z3_API Z3_mk_seq_in_re(Z3_context c, Z3_ast seq, Z3_ast re);
3790
3795 Z3_ast Z3_API Z3_mk_re_plus(Z3_context c, Z3_ast re);
3796
3801 Z3_ast Z3_API Z3_mk_re_star(Z3_context c, Z3_ast re);
3802
3807 Z3_ast Z3_API Z3_mk_re_option(Z3_context c, Z3_ast re);
3808
3815 Z3_ast Z3_API Z3_mk_re_union(Z3_context c, unsigned n, Z3_ast const args[]);
3816
3823 Z3_ast Z3_API Z3_mk_re_concat(Z3_context c, unsigned n, Z3_ast const args[]);
3824
3825
3830 Z3_ast Z3_API Z3_mk_re_range(Z3_context c, Z3_ast lo, Z3_ast hi);
3831
3832
3837 Z3_ast Z3_API Z3_mk_re_allchar(Z3_context c, Z3_sort regex_sort);
3838
3846 Z3_ast Z3_API Z3_mk_re_loop(Z3_context c, Z3_ast r, unsigned lo, unsigned hi);
3847
3852 Z3_ast Z3_API Z3_mk_re_power(Z3_context c, Z3_ast re, unsigned n);
3853
3860 Z3_ast Z3_API Z3_mk_re_intersect(Z3_context c, unsigned n, Z3_ast const args[]);
3861
3866 Z3_ast Z3_API Z3_mk_re_complement(Z3_context c, Z3_ast re);
3867
3872 Z3_ast Z3_API Z3_mk_re_diff(Z3_context c, Z3_ast re1, Z3_ast re2);
3873
3880 Z3_ast Z3_API Z3_mk_re_empty(Z3_context c, Z3_sort re);
3881
3882
3889 Z3_ast Z3_API Z3_mk_re_full(Z3_context c, Z3_sort re);
3890
3891
3895 Z3_ast Z3_API Z3_mk_char(Z3_context c, unsigned ch);
3896
3901 Z3_ast Z3_API Z3_mk_char_le(Z3_context c, Z3_ast ch1, Z3_ast ch2);
3902
3907 Z3_ast Z3_API Z3_mk_char_to_int(Z3_context c, Z3_ast ch);
3908
3913 Z3_ast Z3_API Z3_mk_char_to_bv(Z3_context c, Z3_ast ch);
3914
3919 Z3_ast Z3_API Z3_mk_char_from_bv(Z3_context c, Z3_ast bv);
3920
3925 Z3_ast Z3_API Z3_mk_char_is_digit(Z3_context c, Z3_ast ch);
3926
3937 Z3_func_decl Z3_API Z3_mk_linear_order(Z3_context c, Z3_sort a, unsigned id);
3938
3943 Z3_func_decl Z3_API Z3_mk_partial_order(Z3_context c, Z3_sort a, unsigned id);
3944
3949 Z3_func_decl Z3_API Z3_mk_piecewise_linear_order(Z3_context c, Z3_sort a, unsigned id);
3950
3955 Z3_func_decl Z3_API Z3_mk_tree_order(Z3_context c, Z3_sort a, unsigned id);
3956
3965 Z3_func_decl Z3_API Z3_mk_transitive_closure(Z3_context c, Z3_func_decl f);
3966
3990 Z3_pattern Z3_API Z3_mk_pattern(Z3_context c, unsigned num_patterns, Z3_ast const terms[]);
3991
4023 Z3_ast Z3_API Z3_mk_bound(Z3_context c, unsigned index, Z3_sort ty);
4024
4047 Z3_ast Z3_API Z3_mk_forall(Z3_context c, unsigned weight,
4048 unsigned num_patterns, Z3_pattern const patterns[],
4049 unsigned num_decls, Z3_sort const sorts[],
4050 Z3_symbol const decl_names[],
4051 Z3_ast body);
4052
4062 Z3_ast Z3_API Z3_mk_exists(Z3_context c, unsigned weight,
4063 unsigned num_patterns, Z3_pattern const patterns[],
4064 unsigned num_decls, Z3_sort const sorts[],
4065 Z3_symbol const decl_names[],
4066 Z3_ast body);
4067
4088 Z3_ast Z3_API Z3_mk_quantifier(
4089 Z3_context c,
4090 bool is_forall,
4091 unsigned weight,
4092 unsigned num_patterns, Z3_pattern const patterns[],
4093 unsigned num_decls, Z3_sort const sorts[],
4094 Z3_symbol const decl_names[],
4095 Z3_ast body);
4096
4097
4121 Z3_ast Z3_API Z3_mk_quantifier_ex(
4122 Z3_context c,
4123 bool is_forall,
4124 unsigned weight,
4125 Z3_symbol quantifier_id,
4126 Z3_symbol skolem_id,
4127 unsigned num_patterns, Z3_pattern const patterns[],
4128 unsigned num_no_patterns, Z3_ast const no_patterns[],
4129 unsigned num_decls, Z3_sort const sorts[],
4130 Z3_symbol const decl_names[],
4131 Z3_ast body);
4132
4150 Z3_ast Z3_API Z3_mk_forall_const(
4151 Z3_context c,
4152 unsigned weight,
4153 unsigned num_bound,
4154 Z3_app const bound[],
4155 unsigned num_patterns,
4156 Z3_pattern const patterns[],
4157 Z3_ast body
4158 );
4159
4179 Z3_ast Z3_API Z3_mk_exists_const(
4180 Z3_context c,
4181 unsigned weight,
4182 unsigned num_bound,
4183 Z3_app const bound[],
4184 unsigned num_patterns,
4185 Z3_pattern const patterns[],
4186 Z3_ast body
4187 );
4188
4195 Z3_context c,
4196 bool is_forall,
4197 unsigned weight,
4198 unsigned num_bound, Z3_app const bound[],
4199 unsigned num_patterns, Z3_pattern const patterns[],
4200 Z3_ast body
4201 );
4202
4209 Z3_context c,
4210 bool is_forall,
4211 unsigned weight,
4212 Z3_symbol quantifier_id,
4213 Z3_symbol skolem_id,
4214 unsigned num_bound, Z3_app const bound[],
4215 unsigned num_patterns, Z3_pattern const patterns[],
4216 unsigned num_no_patterns, Z3_ast const no_patterns[],
4217 Z3_ast body
4218 );
4219
4242 Z3_ast Z3_API Z3_mk_lambda(Z3_context c,
4243 unsigned num_decls, Z3_sort const sorts[],
4244 Z3_symbol const decl_names[],
4245 Z3_ast body);
4246
4261 Z3_ast Z3_API Z3_mk_lambda_const(Z3_context c,
4262 unsigned num_bound, Z3_app const bound[],
4263 Z3_ast body);
4264
4265
4276 Z3_symbol_kind Z3_API Z3_get_symbol_kind(Z3_context c, Z3_symbol s);
4277
4286 int Z3_API Z3_get_symbol_int(Z3_context c, Z3_symbol s);
4287
4300 Z3_string Z3_API Z3_get_symbol_string(Z3_context c, Z3_symbol s);
4301
4306 Z3_symbol Z3_API Z3_get_sort_name(Z3_context c, Z3_sort d);
4307
4312 unsigned Z3_API Z3_get_sort_id(Z3_context c, Z3_sort s);
4313
4318 Z3_ast Z3_API Z3_sort_to_ast(Z3_context c, Z3_sort s);
4319
4324 bool Z3_API Z3_is_eq_sort(Z3_context c, Z3_sort s1, Z3_sort s2);
4325
4332 Z3_sort_kind Z3_API Z3_get_sort_kind(Z3_context c, Z3_sort t);
4333
4343 unsigned Z3_API Z3_get_bv_sort_size(Z3_context c, Z3_sort t);
4344
4350 bool Z3_API Z3_get_finite_domain_sort_size(Z3_context c, Z3_sort s, uint64_t* r);
4351
4360 unsigned Z3_API Z3_get_array_arity(Z3_context c, Z3_sort s);
4361
4373 Z3_sort Z3_API Z3_get_array_sort_domain(Z3_context c, Z3_sort t);
4374
4375
4387 Z3_sort Z3_API Z3_get_array_sort_domain_n(Z3_context c, Z3_sort t, unsigned idx);
4388
4398 Z3_sort Z3_API Z3_get_array_sort_range(Z3_context c, Z3_sort t);
4399
4410 Z3_func_decl Z3_API Z3_get_tuple_sort_mk_decl(Z3_context c, Z3_sort t);
4411
4421 unsigned Z3_API Z3_get_tuple_sort_num_fields(Z3_context c, Z3_sort t);
4422
4434 Z3_func_decl Z3_API Z3_get_tuple_sort_field_decl(Z3_context c, Z3_sort t, unsigned i);
4435
4440 bool Z3_API Z3_is_recursive_datatype_sort(Z3_context c, Z3_sort s);
4441
4453 Z3_context c, Z3_sort t);
4454
4467 Z3_context c, Z3_sort t, unsigned idx);
4468
4481 Z3_context c, Z3_sort t, unsigned idx);
4482
4495 Z3_func_decl Z3_API Z3_get_datatype_sort_constructor_accessor(Z3_context c,
4496 Z3_sort t,
4497 unsigned idx_c,
4498 unsigned idx_a);
4499
4518 Z3_ast Z3_API Z3_datatype_update_field(Z3_context c, Z3_func_decl field_access,
4519 Z3_ast t, Z3_ast value);
4520
4529 unsigned Z3_API Z3_get_relation_arity(Z3_context c, Z3_sort s);
4530
4540 Z3_sort Z3_API Z3_get_relation_column(Z3_context c, Z3_sort s, unsigned col);
4541
4548 Z3_ast Z3_API Z3_mk_atmost(Z3_context c, unsigned num_args,
4549 Z3_ast const args[], unsigned k);
4550
4557 Z3_ast Z3_API Z3_mk_atleast(Z3_context c, unsigned num_args,
4558 Z3_ast const args[], unsigned k);
4559
4566 Z3_ast Z3_API Z3_mk_pble(Z3_context c, unsigned num_args,
4567 Z3_ast const args[], int const coeffs[],
4568 int k);
4569
4576 Z3_ast Z3_API Z3_mk_pbge(Z3_context c, unsigned num_args,
4577 Z3_ast const args[], int const coeffs[],
4578 int k);
4579
4586 Z3_ast Z3_API Z3_mk_pbeq(Z3_context c, unsigned num_args,
4587 Z3_ast const args[], int const coeffs[],
4588 int k);
4589
4594 Z3_ast Z3_API Z3_func_decl_to_ast(Z3_context c, Z3_func_decl f);
4595
4600 bool Z3_API Z3_is_eq_func_decl(Z3_context c, Z3_func_decl f1, Z3_func_decl f2);
4601
4606 unsigned Z3_API Z3_get_func_decl_id(Z3_context c, Z3_func_decl f);
4607
4612 Z3_symbol Z3_API Z3_get_decl_name(Z3_context c, Z3_func_decl d);
4613
4618 Z3_decl_kind Z3_API Z3_get_decl_kind(Z3_context c, Z3_func_decl d);
4619
4626 unsigned Z3_API Z3_get_domain_size(Z3_context c, Z3_func_decl d);
4627
4634 unsigned Z3_API Z3_get_arity(Z3_context c, Z3_func_decl d);
4635
4644 Z3_sort Z3_API Z3_get_domain(Z3_context c, Z3_func_decl d, unsigned i);
4645
4653 Z3_sort Z3_API Z3_get_range(Z3_context c, Z3_func_decl d);
4654
4659 unsigned Z3_API Z3_get_decl_num_parameters(Z3_context c, Z3_func_decl d);
4660
4669 Z3_parameter_kind Z3_API Z3_get_decl_parameter_kind(Z3_context c, Z3_func_decl d, unsigned idx);
4670
4677 int Z3_API Z3_get_decl_int_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
4678
4685 double Z3_API Z3_get_decl_double_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
4686
4693 Z3_symbol Z3_API Z3_get_decl_symbol_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
4694
4701 Z3_sort Z3_API Z3_get_decl_sort_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
4702
4709 Z3_ast Z3_API Z3_get_decl_ast_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
4710
4717 Z3_func_decl Z3_API Z3_get_decl_func_decl_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
4718
4725 Z3_string Z3_API Z3_get_decl_rational_parameter(Z3_context c, Z3_func_decl d, unsigned idx);
4726
4731 Z3_ast Z3_API Z3_app_to_ast(Z3_context c, Z3_app a);
4732
4737 Z3_func_decl Z3_API Z3_get_app_decl(Z3_context c, Z3_app a);
4738
4746 unsigned Z3_API Z3_get_app_num_args(Z3_context c, Z3_app a);
4747
4756 Z3_ast Z3_API Z3_get_app_arg(Z3_context c, Z3_app a, unsigned i);
4757
4762 bool Z3_API Z3_is_eq_ast(Z3_context c, Z3_ast t1, Z3_ast t2);
4763
4774 unsigned Z3_API Z3_get_ast_id(Z3_context c, Z3_ast t);
4775
4783 unsigned Z3_API Z3_get_ast_hash(Z3_context c, Z3_ast a);
4784
4791 Z3_sort Z3_API Z3_get_sort(Z3_context c, Z3_ast a);
4792
4797 bool Z3_API Z3_is_well_sorted(Z3_context c, Z3_ast t);
4798
4803 Z3_lbool Z3_API Z3_get_bool_value(Z3_context c, Z3_ast a);
4804
4809 Z3_ast_kind Z3_API Z3_get_ast_kind(Z3_context c, Z3_ast a);
4810
4813 bool Z3_API Z3_is_app(Z3_context c, Z3_ast a);
4814
4817 bool Z3_API Z3_is_ground(Z3_context c, Z3_ast a);
4818
4821 unsigned Z3_API Z3_get_depth(Z3_context c, Z3_ast a);
4822
4825 bool Z3_API Z3_is_numeral_ast(Z3_context c, Z3_ast a);
4826
4831 bool Z3_API Z3_is_algebraic_number(Z3_context c, Z3_ast a);
4832
4839 Z3_app Z3_API Z3_to_app(Z3_context c, Z3_ast a);
4840
4847 Z3_func_decl Z3_API Z3_to_func_decl(Z3_context c, Z3_ast a);
4848
4855 Z3_string Z3_API Z3_get_numeral_string(Z3_context c, Z3_ast a);
4856
4864 Z3_string Z3_API Z3_get_numeral_binary_string(Z3_context c, Z3_ast a);
4865
4873 Z3_string Z3_API Z3_get_numeral_decimal_string(Z3_context c, Z3_ast a, unsigned precision);
4874
4881 double Z3_API Z3_get_numeral_double(Z3_context c, Z3_ast a);
4882
4889 Z3_ast Z3_API Z3_get_numerator(Z3_context c, Z3_ast a);
4890
4897 Z3_ast Z3_API Z3_get_denominator(Z3_context c, Z3_ast a);
4898
4914 bool Z3_API Z3_get_numeral_small(Z3_context c, Z3_ast a, int64_t* num, int64_t* den);
4915
4925 bool Z3_API Z3_get_numeral_int(Z3_context c, Z3_ast v, int* i);
4926
4936 bool Z3_API Z3_get_numeral_uint(Z3_context c, Z3_ast v, unsigned* u);
4937
4947 bool Z3_API Z3_get_numeral_uint64(Z3_context c, Z3_ast v, uint64_t* u);
4948
4958 bool Z3_API Z3_get_numeral_int64(Z3_context c, Z3_ast v, int64_t* i);
4959
4969 bool Z3_API Z3_get_numeral_rational_int64(Z3_context c, Z3_ast v, int64_t* num, int64_t* den);
4970
4979 Z3_ast Z3_API Z3_get_algebraic_number_lower(Z3_context c, Z3_ast a, unsigned precision);
4980
4989 Z3_ast Z3_API Z3_get_algebraic_number_upper(Z3_context c, Z3_ast a, unsigned precision);
4990
4995 Z3_ast Z3_API Z3_pattern_to_ast(Z3_context c, Z3_pattern p);
4996
5001 unsigned Z3_API Z3_get_pattern_num_terms(Z3_context c, Z3_pattern p);
5002
5007 Z3_ast Z3_API Z3_get_pattern(Z3_context c, Z3_pattern p, unsigned idx);
5008
5015 unsigned Z3_API Z3_get_index_value(Z3_context c, Z3_ast a);
5016
5021 bool Z3_API Z3_is_quantifier_forall(Z3_context c, Z3_ast a);
5022
5028 bool Z3_API Z3_is_quantifier_exists(Z3_context c, Z3_ast a);
5029
5036 bool Z3_API Z3_is_lambda(Z3_context c, Z3_ast a);
5037
5044 unsigned Z3_API Z3_get_quantifier_weight(Z3_context c, Z3_ast a);
5045
5052 Z3_symbol Z3_API Z3_get_quantifier_skolem_id(Z3_context c, Z3_ast a);
5053
5060 Z3_symbol Z3_API Z3_get_quantifier_id(Z3_context c, Z3_ast a);
5061
5068 unsigned Z3_API Z3_get_quantifier_num_patterns(Z3_context c, Z3_ast a);
5069
5076 Z3_pattern Z3_API Z3_get_quantifier_pattern_ast(Z3_context c, Z3_ast a, unsigned i);
5077
5084 unsigned Z3_API Z3_get_quantifier_num_no_patterns(Z3_context c, Z3_ast a);
5085
5092 Z3_ast Z3_API Z3_get_quantifier_no_pattern_ast(Z3_context c, Z3_ast a, unsigned i);
5093
5100 unsigned Z3_API Z3_get_quantifier_num_bound(Z3_context c, Z3_ast a);
5101
5108 Z3_symbol Z3_API Z3_get_quantifier_bound_name(Z3_context c, Z3_ast a, unsigned i);
5109
5116 Z3_sort Z3_API Z3_get_quantifier_bound_sort(Z3_context c, Z3_ast a, unsigned i);
5117
5124 Z3_ast Z3_API Z3_get_quantifier_body(Z3_context c, Z3_ast a);
5125
5137 Z3_ast Z3_API Z3_simplify(Z3_context c, Z3_ast a);
5138
5151 Z3_ast Z3_API Z3_simplify_ex(Z3_context c, Z3_ast a, Z3_params p);
5152
5160 Z3_string Z3_API Z3_simplify_get_help(Z3_context c);
5161
5169 Z3_param_descrs Z3_API Z3_simplify_get_param_descrs(Z3_context c);
5181 Z3_ast Z3_API Z3_update_term(Z3_context c, Z3_ast a, unsigned num_args, Z3_ast const args[]);
5182
5189 Z3_ast Z3_API Z3_substitute(Z3_context c,
5190 Z3_ast a,
5191 unsigned num_exprs,
5192 Z3_ast const from[],
5193 Z3_ast const to[]);
5194
5201 Z3_ast Z3_API Z3_substitute_vars(Z3_context c,
5202 Z3_ast a,
5203 unsigned num_exprs,
5204 Z3_ast const to[]);
5205
5213 Z3_ast Z3_API Z3_substitute_funs(Z3_context c,
5214 Z3_ast a,
5215 unsigned num_funs,
5216 Z3_func_decl const from[],
5217 Z3_ast const to[]);
5218
5225 Z3_ast Z3_API Z3_translate(Z3_context source, Z3_ast a, Z3_context target);
5235 Z3_model Z3_API Z3_mk_model(Z3_context c);
5236
5241 void Z3_API Z3_model_inc_ref(Z3_context c, Z3_model m);
5242
5247 void Z3_API Z3_model_dec_ref(Z3_context c, Z3_model m);
5248
5271 bool Z3_API Z3_model_eval(Z3_context c, Z3_model m, Z3_ast t, bool model_completion, Z3_ast * v);
5272
5281 Z3_ast Z3_API Z3_model_get_const_interp(Z3_context c, Z3_model m, Z3_func_decl a);
5282
5287 bool Z3_API Z3_model_has_interp(Z3_context c, Z3_model m, Z3_func_decl a);
5288
5300 Z3_func_interp Z3_API Z3_model_get_func_interp(Z3_context c, Z3_model m, Z3_func_decl f);
5301
5308 unsigned Z3_API Z3_model_get_num_consts(Z3_context c, Z3_model m);
5309
5319 Z3_func_decl Z3_API Z3_model_get_const_decl(Z3_context c, Z3_model m, unsigned i);
5320
5330 unsigned Z3_API Z3_model_get_num_funcs(Z3_context c, Z3_model m);
5331
5340 Z3_func_decl Z3_API Z3_model_get_func_decl(Z3_context c, Z3_model m, unsigned i);
5341
5353 unsigned Z3_API Z3_model_get_num_sorts(Z3_context c, Z3_model m);
5354
5364 Z3_sort Z3_API Z3_model_get_sort(Z3_context c, Z3_model m, unsigned i);
5365
5373 Z3_ast_vector Z3_API Z3_model_get_sort_universe(Z3_context c, Z3_model m, Z3_sort s);
5374
5383 Z3_model Z3_API Z3_model_translate(Z3_context c, Z3_model m, Z3_context dst);
5384
5395 bool Z3_API Z3_is_as_array(Z3_context c, Z3_ast a);
5396
5403 Z3_func_decl Z3_API Z3_get_as_array_func_decl(Z3_context c, Z3_ast a);
5404
5415 Z3_func_interp Z3_API Z3_add_func_interp(Z3_context c, Z3_model m, Z3_func_decl f, Z3_ast default_value);
5416
5421 void Z3_API Z3_add_const_interp(Z3_context c, Z3_model m, Z3_func_decl f, Z3_ast a);
5422
5427 void Z3_API Z3_func_interp_inc_ref(Z3_context c, Z3_func_interp f);
5428
5433 void Z3_API Z3_func_interp_dec_ref(Z3_context c, Z3_func_interp f);
5434
5445 unsigned Z3_API Z3_func_interp_get_num_entries(Z3_context c, Z3_func_interp f);
5446
5456 Z3_func_entry Z3_API Z3_func_interp_get_entry(Z3_context c, Z3_func_interp f, unsigned i);
5457
5465 Z3_ast Z3_API Z3_func_interp_get_else(Z3_context c, Z3_func_interp f);
5466
5474 void Z3_API Z3_func_interp_set_else(Z3_context c, Z3_func_interp f, Z3_ast else_value);
5475
5480 unsigned Z3_API Z3_func_interp_get_arity(Z3_context c, Z3_func_interp f);
5481
5495 void Z3_API Z3_func_interp_add_entry(Z3_context c, Z3_func_interp fi, Z3_ast_vector args, Z3_ast value);
5496
5501 void Z3_API Z3_func_entry_inc_ref(Z3_context c, Z3_func_entry e);
5502
5507 void Z3_API Z3_func_entry_dec_ref(Z3_context c, Z3_func_entry e);
5508
5518 Z3_ast Z3_API Z3_func_entry_get_value(Z3_context c, Z3_func_entry e);
5519
5527 unsigned Z3_API Z3_func_entry_get_num_args(Z3_context c, Z3_func_entry e);
5528
5538 Z3_ast Z3_API Z3_func_entry_get_arg(Z3_context c, Z3_func_entry e, unsigned i);
5550 bool Z3_API Z3_open_log(Z3_string filename);
5551
5563 void Z3_API Z3_append_log(Z3_string string);
5564
5572 void Z3_API Z3_close_log(void);
5573
5581 void Z3_API Z3_toggle_warning_messages(bool enabled);
5602 void Z3_API Z3_set_ast_print_mode(Z3_context c, Z3_ast_print_mode mode);
5603
5615 Z3_string Z3_API Z3_ast_to_string(Z3_context c, Z3_ast a);
5616
5619 Z3_string Z3_API Z3_pattern_to_string(Z3_context c, Z3_pattern p);
5620
5623 Z3_string Z3_API Z3_sort_to_string(Z3_context c, Z3_sort s);
5624
5627 Z3_string Z3_API Z3_func_decl_to_string(Z3_context c, Z3_func_decl d);
5628
5637 Z3_string Z3_API Z3_model_to_string(Z3_context c, Z3_model m);
5638
5657 Z3_string name,
5658 Z3_string logic,
5659 Z3_string status,
5660 Z3_string attributes,
5661 unsigned num_assumptions,
5662 Z3_ast const assumptions[],
5663 Z3_ast formula);
5664
5676 Z3_ast_vector Z3_API Z3_parse_smtlib2_string(Z3_context c,
5677 Z3_string str,
5678 unsigned num_sorts,
5679 Z3_symbol const sort_names[],
5680 Z3_sort const sorts[],
5681 unsigned num_decls,
5682 Z3_symbol const decl_names[],
5683 Z3_func_decl const decls[]);
5684
5689 Z3_ast_vector Z3_API Z3_parse_smtlib2_file(Z3_context c,
5690 Z3_string file_name,
5691 unsigned num_sorts,
5692 Z3_symbol const sort_names[],
5693 Z3_sort const sorts[],
5694 unsigned num_decls,
5695 Z3_symbol const decl_names[],
5696 Z3_func_decl const decls[]);
5697
5698
5707 Z3_string Z3_API Z3_eval_smtlib2_string(Z3_context c, Z3_string str);
5708
5709
5719 Z3_parser_context Z3_API Z3_mk_parser_context(Z3_context c);
5720
5725 void Z3_API Z3_parser_context_inc_ref(Z3_context c, Z3_parser_context pc);
5726
5731 void Z3_API Z3_parser_context_dec_ref(Z3_context c, Z3_parser_context pc);
5732
5737 void Z3_API Z3_parser_context_add_sort(Z3_context c, Z3_parser_context pc, Z3_sort s);
5738
5743 void Z3_API Z3_parser_context_add_decl(Z3_context c, Z3_parser_context pc, Z3_func_decl f);
5744
5749 Z3_ast_vector Z3_API Z3_parser_context_from_string(Z3_context c, Z3_parser_context pc, Z3_string s);
5750
5751
5765 Z3_error_code Z3_API Z3_get_error_code(Z3_context c);
5766
5779 void Z3_API Z3_set_error_handler(Z3_context c, Z3_error_handler h);
5780
5785 void Z3_API Z3_set_error(Z3_context c, Z3_error_code e);
5786
5791 Z3_string Z3_API Z3_get_error_msg(Z3_context c, Z3_error_code err);
5792
5804 void Z3_API Z3_get_version(unsigned * major, unsigned * minor, unsigned * build_number, unsigned * revision_number);
5805
5813
5821 void Z3_API Z3_enable_trace(Z3_string tag);
5822
5830 void Z3_API Z3_disable_trace(Z3_string tag);
5831
5841 void Z3_API Z3_reset_memory(void);
5842
5850 void Z3_API Z3_finalize_memory(void);
5871 Z3_goal Z3_API Z3_mk_goal(Z3_context c, bool models, bool unsat_cores, bool proofs);
5872
5877 void Z3_API Z3_goal_inc_ref(Z3_context c, Z3_goal g);
5878
5883 void Z3_API Z3_goal_dec_ref(Z3_context c, Z3_goal g);
5884
5891 Z3_goal_prec Z3_API Z3_goal_precision(Z3_context c, Z3_goal g);
5892
5904 void Z3_API Z3_goal_assert(Z3_context c, Z3_goal g, Z3_ast a);
5905
5910 bool Z3_API Z3_goal_inconsistent(Z3_context c, Z3_goal g);
5911
5916 unsigned Z3_API Z3_goal_depth(Z3_context c, Z3_goal g);
5917
5922 void Z3_API Z3_goal_reset(Z3_context c, Z3_goal g);
5923
5928 unsigned Z3_API Z3_goal_size(Z3_context c, Z3_goal g);
5929
5936 Z3_ast Z3_API Z3_goal_formula(Z3_context c, Z3_goal g, unsigned idx);
5937
5942 unsigned Z3_API Z3_goal_num_exprs(Z3_context c, Z3_goal g);
5943
5948 bool Z3_API Z3_goal_is_decided_sat(Z3_context c, Z3_goal g);
5949
5954 bool Z3_API Z3_goal_is_decided_unsat(Z3_context c, Z3_goal g);
5955
5960 Z3_goal Z3_API Z3_goal_translate(Z3_context source, Z3_goal g, Z3_context target);
5961
5973 Z3_model Z3_API Z3_goal_convert_model(Z3_context c, Z3_goal g, Z3_model m);
5974
5979 Z3_string Z3_API Z3_goal_to_string(Z3_context c, Z3_goal g);
5980
5990 Z3_string Z3_API Z3_goal_to_dimacs_string(Z3_context c, Z3_goal g, bool include_names);
5991
6004 Z3_tactic Z3_API Z3_mk_tactic(Z3_context c, Z3_string name);
6005
6010 void Z3_API Z3_tactic_inc_ref(Z3_context c, Z3_tactic t);
6011
6016 void Z3_API Z3_tactic_dec_ref(Z3_context c, Z3_tactic g);
6017
6027 Z3_probe Z3_API Z3_mk_probe(Z3_context c, Z3_string name);
6028
6033 void Z3_API Z3_probe_inc_ref(Z3_context c, Z3_probe p);
6034
6039 void Z3_API Z3_probe_dec_ref(Z3_context c, Z3_probe p);
6040
6046 Z3_tactic Z3_API Z3_tactic_and_then(Z3_context c, Z3_tactic t1, Z3_tactic t2);
6047
6053 Z3_tactic Z3_API Z3_tactic_or_else(Z3_context c, Z3_tactic t1, Z3_tactic t2);
6054
6059 Z3_tactic Z3_API Z3_tactic_par_or(Z3_context c, unsigned num, Z3_tactic const ts[]);
6060
6066 Z3_tactic Z3_API Z3_tactic_par_and_then(Z3_context c, Z3_tactic t1, Z3_tactic t2);
6067
6073 Z3_tactic Z3_API Z3_tactic_try_for(Z3_context c, Z3_tactic t, unsigned ms);
6074
6080 Z3_tactic Z3_API Z3_tactic_when(Z3_context c, Z3_probe p, Z3_tactic t);
6081
6087 Z3_tactic Z3_API Z3_tactic_cond(Z3_context c, Z3_probe p, Z3_tactic t1, Z3_tactic t2);
6088
6094 Z3_tactic Z3_API Z3_tactic_repeat(Z3_context c, Z3_tactic t, unsigned max);
6095
6100 Z3_tactic Z3_API Z3_tactic_skip(Z3_context c);
6101
6106 Z3_tactic Z3_API Z3_tactic_fail(Z3_context c);
6107
6112 Z3_tactic Z3_API Z3_tactic_fail_if(Z3_context c, Z3_probe p);
6113
6119 Z3_tactic Z3_API Z3_tactic_fail_if_not_decided(Z3_context c);
6120
6125 Z3_tactic Z3_API Z3_tactic_using_params(Z3_context c, Z3_tactic t, Z3_params p);
6126
6127
6136 Z3_simplifier Z3_API Z3_mk_simplifier(Z3_context c, Z3_string name);
6137
6142 void Z3_API Z3_simplifier_inc_ref(Z3_context c, Z3_simplifier t);
6143
6148 void Z3_API Z3_simplifier_dec_ref(Z3_context c, Z3_simplifier g);
6149
6154 Z3_solver Z3_API Z3_solver_add_simplifier(Z3_context c, Z3_solver solver, Z3_simplifier simplifier);
6155
6161 Z3_simplifier Z3_API Z3_simplifier_and_then(Z3_context c, Z3_simplifier t1, Z3_simplifier t2);
6162
6167 Z3_simplifier Z3_API Z3_simplifier_using_params(Z3_context c, Z3_simplifier t, Z3_params p);
6168
6169
6176 unsigned Z3_API Z3_get_num_simplifiers(Z3_context c);
6177
6186 Z3_string Z3_API Z3_get_simplifier_name(Z3_context c, unsigned i);
6187
6192 Z3_string Z3_API Z3_simplifier_get_help(Z3_context c, Z3_simplifier t);
6193
6198 Z3_param_descrs Z3_API Z3_simplifier_get_param_descrs(Z3_context c, Z3_simplifier t);
6199
6204 Z3_string Z3_API Z3_simplifier_get_descr(Z3_context c, Z3_string name);
6205
6206
6211 Z3_probe Z3_API Z3_probe_const(Z3_context x, double val);
6212
6219 Z3_probe Z3_API Z3_probe_lt(Z3_context x, Z3_probe p1, Z3_probe p2);
6220
6227 Z3_probe Z3_API Z3_probe_gt(Z3_context x, Z3_probe p1, Z3_probe p2);
6228
6235 Z3_probe Z3_API Z3_probe_le(Z3_context x, Z3_probe p1, Z3_probe p2);
6236
6243 Z3_probe Z3_API Z3_probe_ge(Z3_context x, Z3_probe p1, Z3_probe p2);
6244
6251 Z3_probe Z3_API Z3_probe_eq(Z3_context x, Z3_probe p1, Z3_probe p2);
6252
6259 Z3_probe Z3_API Z3_probe_and(Z3_context x, Z3_probe p1, Z3_probe p2);
6260
6267 Z3_probe Z3_API Z3_probe_or(Z3_context x, Z3_probe p1, Z3_probe p2);
6268
6275 Z3_probe Z3_API Z3_probe_not(Z3_context x, Z3_probe p);
6276
6283 unsigned Z3_API Z3_get_num_tactics(Z3_context c);
6284
6293 Z3_string Z3_API Z3_get_tactic_name(Z3_context c, unsigned i);
6294
6301 unsigned Z3_API Z3_get_num_probes(Z3_context c);
6302
6311 Z3_string Z3_API Z3_get_probe_name(Z3_context c, unsigned i);
6312
6317 Z3_string Z3_API Z3_tactic_get_help(Z3_context c, Z3_tactic t);
6318
6323 Z3_param_descrs Z3_API Z3_tactic_get_param_descrs(Z3_context c, Z3_tactic t);
6324
6329 Z3_string Z3_API Z3_tactic_get_descr(Z3_context c, Z3_string name);
6330
6335 Z3_string Z3_API Z3_probe_get_descr(Z3_context c, Z3_string name);
6336
6342 double Z3_API Z3_probe_apply(Z3_context c, Z3_probe p, Z3_goal g);
6343
6350 Z3_apply_result Z3_API Z3_tactic_apply(Z3_context c, Z3_tactic t, Z3_goal g);
6351
6358 Z3_apply_result Z3_API Z3_tactic_apply_ex(Z3_context c, Z3_tactic t, Z3_goal g, Z3_params p);
6359
6364 void Z3_API Z3_apply_result_inc_ref(Z3_context c, Z3_apply_result r);
6365
6370 void Z3_API Z3_apply_result_dec_ref(Z3_context c, Z3_apply_result r);
6371
6376 Z3_string Z3_API Z3_apply_result_to_string(Z3_context c, Z3_apply_result r);
6377
6384 unsigned Z3_API Z3_apply_result_get_num_subgoals(Z3_context c, Z3_apply_result r);
6385
6394 Z3_goal Z3_API Z3_apply_result_get_subgoal(Z3_context c, Z3_apply_result r, unsigned i);
6395
6439 Z3_solver Z3_API Z3_mk_solver(Z3_context c);
6440
6469 Z3_solver Z3_API Z3_mk_simple_solver(Z3_context c);
6470
6483 Z3_solver Z3_API Z3_mk_solver_for_logic(Z3_context c, Z3_symbol logic);
6484
6498 Z3_solver Z3_API Z3_mk_solver_from_tactic(Z3_context c, Z3_tactic t);
6499
6504 Z3_solver Z3_API Z3_solver_translate(Z3_context source, Z3_solver s, Z3_context target);
6505
6518 void Z3_API Z3_solver_import_model_converter(Z3_context ctx, Z3_solver src, Z3_solver dst);
6519
6527 Z3_string Z3_API Z3_solver_get_help(Z3_context c, Z3_solver s);
6528
6536 Z3_param_descrs Z3_API Z3_solver_get_param_descrs(Z3_context c, Z3_solver s);
6537
6545 void Z3_API Z3_solver_set_params(Z3_context c, Z3_solver s, Z3_params p);
6546
6551 void Z3_API Z3_solver_inc_ref(Z3_context c, Z3_solver s);
6552
6557 void Z3_API Z3_solver_dec_ref(Z3_context c, Z3_solver s);
6558
6568 void Z3_API Z3_solver_interrupt(Z3_context c, Z3_solver s);
6569
6579 void Z3_API Z3_solver_push(Z3_context c, Z3_solver s);
6580
6590 void Z3_API Z3_solver_pop(Z3_context c, Z3_solver s, unsigned n);
6591
6599 void Z3_API Z3_solver_reset(Z3_context c, Z3_solver s);
6600
6608 unsigned Z3_API Z3_solver_get_num_scopes(Z3_context c, Z3_solver s);
6609
6620 void Z3_API Z3_solver_assert(Z3_context c, Z3_solver s, Z3_ast a);
6621
6638 void Z3_API Z3_solver_assert_and_track(Z3_context c, Z3_solver s, Z3_ast a, Z3_ast p);
6639
6647 void Z3_API Z3_solver_from_file(Z3_context c, Z3_solver s, Z3_string file_name);
6648
6656 void Z3_API Z3_solver_from_string(Z3_context c, Z3_solver s, Z3_string str);
6657
6662 Z3_ast_vector Z3_API Z3_solver_get_assertions(Z3_context c, Z3_solver s);
6663
6668 Z3_ast_vector Z3_API Z3_solver_get_units(Z3_context c, Z3_solver s);
6669
6675 Z3_ast_vector Z3_API Z3_solver_get_trail(Z3_context c, Z3_solver s);
6676
6681 Z3_ast_vector Z3_API Z3_solver_get_non_units(Z3_context c, Z3_solver s);
6682
6688 void Z3_API Z3_solver_get_levels(Z3_context c, Z3_solver s, Z3_ast_vector literals, unsigned sz, unsigned levels[]);
6689
6697 Z3_ast Z3_API Z3_solver_congruence_root(Z3_context c, Z3_solver s, Z3_ast a);
6698
6699
6705 Z3_ast Z3_API Z3_solver_congruence_next(Z3_context c, Z3_solver s, Z3_ast a);
6706
6712 Z3_ast Z3_API Z3_solver_congruence_explain(Z3_context c, Z3_solver s, Z3_ast a, Z3_ast b);
6713
6721 void Z3_API Z3_solver_solve_for(Z3_context c, Z3_solver s, Z3_ast_vector variables, Z3_ast_vector terms, Z3_ast_vector guards);
6722
6736 Z3_context c,
6737 Z3_solver s,
6738 void* user_context,
6739 Z3_on_clause_eh on_clause_eh);
6740
6754 Z3_context c,
6755 Z3_solver s,
6756 void* user_context,
6757 Z3_push_eh push_eh,
6758 Z3_pop_eh pop_eh,
6759 Z3_fresh_eh fresh_eh);
6760
6769 void Z3_API Z3_solver_propagate_fixed(Z3_context c, Z3_solver s, Z3_fixed_eh fixed_eh);
6770
6785 void Z3_API Z3_solver_propagate_final(Z3_context c, Z3_solver s, Z3_final_eh final_eh);
6786
6791 void Z3_API Z3_solver_propagate_eq(Z3_context c, Z3_solver s, Z3_eq_eh eq_eh);
6792
6797 void Z3_API Z3_solver_propagate_diseq(Z3_context c, Z3_solver s, Z3_eq_eh eq_eh);
6798
6804 void Z3_API Z3_solver_propagate_created(Z3_context c, Z3_solver s, Z3_created_eh created_eh);
6805
6811 void Z3_API Z3_solver_propagate_decide(Z3_context c, Z3_solver s, Z3_decide_eh decide_eh);
6812
6813
6822 void Z3_API Z3_solver_propagate_on_binding(Z3_context c, Z3_solver s, Z3_on_binding_eh on_binding_eh);
6830 bool Z3_API Z3_solver_next_split(Z3_context c, Z3_solver_callback cb, Z3_ast t, unsigned idx, Z3_lbool phase);
6831
6841 Z3_func_decl Z3_API Z3_solver_propagate_declare(Z3_context c, Z3_symbol name, unsigned n, Z3_sort* domain, Z3_sort range);
6842
6849 void Z3_API Z3_solver_propagate_register(Z3_context c, Z3_solver s, Z3_ast e);
6850
6858 void Z3_API Z3_solver_propagate_register_cb(Z3_context c, Z3_solver_callback cb, Z3_ast e);
6859
6882 bool Z3_API Z3_solver_propagate_consequence(Z3_context c, Z3_solver_callback cb, unsigned num_fixed, Z3_ast const* fixed, unsigned num_eqs, Z3_ast const* eq_lhs, Z3_ast const* eq_rhs, Z3_ast conseq);
6883
6884
6892 void Z3_API Z3_solver_set_initial_value(Z3_context c, Z3_solver s, Z3_ast v, Z3_ast val);
6893
6894
6912 Z3_lbool Z3_API Z3_solver_check(Z3_context c, Z3_solver s);
6913
6924 Z3_lbool Z3_API Z3_solver_check_assumptions(Z3_context c, Z3_solver s,
6925 unsigned num_assumptions, Z3_ast const assumptions[]);
6926
6945 Z3_solver s,
6946 unsigned num_terms,
6947 Z3_ast const terms[],
6948 unsigned class_ids[]);
6949
6956 Z3_solver s,
6957 Z3_ast_vector assumptions,
6958 Z3_ast_vector variables,
6959 Z3_ast_vector consequences);
6960
6961
6979 Z3_ast_vector Z3_API Z3_solver_cube(Z3_context c, Z3_solver s, Z3_ast_vector vars, unsigned backtrack_level);
6980
6988 Z3_model Z3_API Z3_solver_get_model(Z3_context c, Z3_solver s);
6989
6998 Z3_ast Z3_API Z3_solver_get_proof(Z3_context c, Z3_solver s);
6999
7010 Z3_ast_vector Z3_API Z3_solver_get_unsat_core(Z3_context c, Z3_solver s);
7011
7017 Z3_string Z3_API Z3_solver_get_reason_unknown(Z3_context c, Z3_solver s);
7018
7025 Z3_stats Z3_API Z3_solver_get_statistics(Z3_context c, Z3_solver s);
7026
7034 Z3_string Z3_API Z3_solver_to_string(Z3_context c, Z3_solver s);
7035
7041 Z3_string Z3_API Z3_solver_to_dimacs_string(Z3_context c, Z3_solver s, bool include_names);
7042
7052 Z3_string Z3_API Z3_stats_to_string(Z3_context c, Z3_stats s);
7053
7058 void Z3_API Z3_stats_inc_ref(Z3_context c, Z3_stats s);
7059
7064 void Z3_API Z3_stats_dec_ref(Z3_context c, Z3_stats s);
7065
7070 unsigned Z3_API Z3_stats_size(Z3_context c, Z3_stats s);
7071
7078 Z3_string Z3_API Z3_stats_get_key(Z3_context c, Z3_stats s, unsigned idx);
7079
7086 bool Z3_API Z3_stats_is_uint(Z3_context c, Z3_stats s, unsigned idx);
7087
7094 bool Z3_API Z3_stats_is_double(Z3_context c, Z3_stats s, unsigned idx);
7095
7102 unsigned Z3_API Z3_stats_get_uint_value(Z3_context c, Z3_stats s, unsigned idx);
7103
7110 double Z3_API Z3_stats_get_double_value(Z3_context c, Z3_stats s, unsigned idx);
7111
7116 uint64_t Z3_API Z3_get_estimated_alloc_size(void);
7117
7120#ifdef __cplusplus
7121}
7122#endif // __cplusplus
7123
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.
void Z3_API Z3_solver_propagate_on_binding(Z3_context c, Z3_solver s, Z3_on_binding_eh on_binding_eh)
register a callback when the solver instantiates a quantifier. If the callback returns false,...
Z3_ast Z3_API Z3_mk_pbeq(Z3_context c, unsigned num_args, Z3_ast const args[], int const coeffs[], int k)
Pseudo-Boolean relations.
Z3_ast_print_mode
Z3 pretty printing modes (See Z3_set_ast_print_mode).
Definition z3_api.h:1364
Z3_ast_kind
The different kinds of Z3 AST (abstract syntax trees). That is, terms, formulas and types.
Definition z3_api.h:142
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,...
Z3_sort Z3_API Z3_mk_int_sort(Z3_context c)
Create the integer type.
Z3_simplifier Z3_API Z3_simplifier_and_then(Z3_context c, Z3_simplifier t1, Z3_simplifier t2)
Return a simplifier that applies t1 to a given goal and t2 to every subgoal produced by t1.
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_sort Z3_API Z3_mk_array_sort_n(Z3_context c, unsigned n, Z3_sort const *domain, Z3_sort range)
Create an array type with N arguments.
Z3_ast Z3_API Z3_mk_bvxnor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise xnor.
Z3_ast Z3_API Z3_mk_quantifier(Z3_context c, 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_string Z3_API Z3_get_error_msg(Z3_context c, Z3_error_code err)
Return a string describing the given error code.
bool Z3_API Z3_open_log(Z3_string filename)
Log interaction to a file.
Z3_ast Z3_API Z3_mk_seq_replace_all(Z3_context c, Z3_ast s, Z3_ast src, Z3_ast dst)
Replace all occurrences of src with dst in s.
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.
bool Z3_API Z3_is_seq_sort(Z3_context c, Z3_sort s)
Check if s is a sequence sort.
Z3_ast Z3_API Z3_mk_bvnor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise nor.
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_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_decl_kind Z3_API Z3_get_decl_kind(Z3_context c, Z3_func_decl d)
Return declaration kind corresponding to declaration.
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.
Z3_ast Z3_API Z3_func_interp_get_else(Z3_context c, Z3_func_interp f)
Return the 'else' value of the given function interpretation.
Z3_ast Z3_API Z3_mk_char_to_bv(Z3_context c, Z3_ast ch)
Create a bit-vector (code point) from character.
void Z3_API Z3_solver_propagate_diseq(Z3_context c, Z3_solver s, Z3_eq_eh eq_eh)
register a callback on expression dis-equalities.
Z3_ast Z3_API Z3_mk_bvsge(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed greater than or equal to.
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_const_array(Z3_context c, Z3_sort domain, Z3_ast v)
Create the constant array.
void Z3_API Z3_simplifier_inc_ref(Z3_context c, Z3_simplifier t)
Increment the reference counter of the given simplifier.
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_sort Z3_API Z3_mk_char_sort(Z3_context c)
Create a sort for unicode characters.
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_ast Z3_API Z3_mk_re_option(Z3_context c, Z3_ast re)
Create the regular language [re].
Z3_ast Z3_API Z3_mk_bvsle(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed less than or equal to.
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.
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_context Z3_API Z3_mk_context(Z3_config c)
Create a context using the given configuration.
void Z3_API Z3_del_context(Z3_context c)
Delete the given logical context.
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....
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].
Z3_func_decl Z3_API Z3_get_decl_func_decl_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the expression value associated with an expression parameter.
Z3_goal_prec
Z3 custom error handler (See Z3_set_error_handler).
Definition z3_api.h:1430
Z3_ast Z3_API Z3_mk_seq_replace(Z3_context c, Z3_ast s, Z3_ast src, Z3_ast dst)
Replace the first occurrence of src with dst in s.
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...
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 bit-vector of size m+i,...
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_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.
Z3_ast Z3_API Z3_mk_str_le(Z3_context c, Z3_ast prefix, Z3_ast s)
Check if s1 is equal or lexicographically strictly less than s2.
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...
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_ast Z3_API Z3_mk_set_subset(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Check for subsetness of sets.
Z3_ast Z3_API Z3_simplify(Z3_context c, Z3_ast a)
Interface to simplifier.
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_lbool Z3_API Z3_solver_get_consequences(Z3_context c, Z3_solver s, Z3_ast_vector assumptions, Z3_ast_vector variables, Z3_ast_vector consequences)
retrieve consequences from solver that determine values of the supplied function symbols.
void Z3_API Z3_get_string_contents(Z3_context c, Z3_ast s, unsigned length, unsigned contents[])
Retrieve the unescaped string constant stored in s.
Z3_ast Z3_API Z3_mk_bvule(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned less than or equal to.
Z3_ast Z3_API Z3_mk_full_set(Z3_context c, Z3_sort domain)
Create the full set.
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_char_le(Z3_context c, Z3_ast ch1, Z3_ast ch2)
Create less than or equal to between two characters.
bool Z3_API Z3_get_numeral_int64(Z3_context c, Z3_ast v, int64_t *i)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit in a machine int64_t int....
void Z3_API Z3_add_rec_def(Z3_context c, Z3_func_decl f, unsigned n, Z3_ast args[], Z3_ast body)
Define the body of a recursive function.
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.
Z3_string Z3_API Z3_eval_smtlib2_string(Z3_context c, Z3_string str)
Parse and evaluate and SMT-LIB2 command sequence. The state from a previous call is saved so the next...
void Z3_API Z3_toggle_warning_messages(bool enabled)
Enable/disable printing warning messages to the console.
Z3_ast Z3_API Z3_mk_true(Z3_context c)
Create an AST node representing true.
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_ast Z3_API Z3_mk_finite_set_empty(Z3_context c, Z3_sort set_sort)
Create an empty finite set of the given sort.
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.
Z3_func_interp Z3_API Z3_add_func_interp(Z3_context c, Z3_model m, Z3_func_decl f, Z3_ast default_value)
Create a fresh func_interp object, add it to a model for a specified function. It has reference count...
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.
Z3_decl_kind
The different kinds of interpreted function kinds.
Definition z3_api.h:988
void Z3_API Z3_parser_context_add_decl(Z3_context c, Z3_parser_context pc, Z3_func_decl f)
Add a function declaration.
unsigned Z3_API Z3_get_arity(Z3_context c, Z3_func_decl d)
Alias for Z3_get_domain_size.
Z3_ast Z3_API Z3_mk_bvxor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise exclusive-or.
Z3_string Z3_API Z3_stats_to_string(Z3_context c, Z3_stats s)
Convert a statistics into a string.
Z3_sort Z3_API Z3_mk_real_sort(Z3_context c)
Create the real type.
Z3_ast Z3_API Z3_mk_string_from_code(Z3_context c, Z3_ast a)
Code to string conversion.
Z3_ast Z3_API Z3_mk_le(Z3_context c, Z3_ast t1, Z3_ast t2)
Create less than or equal to.
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.
bool Z3_API Z3_global_param_get(Z3_string param_id, Z3_string_ptr param_value)
Get a global (or module) parameter.
bool Z3_API Z3_is_finite_set_sort(Z3_context c, Z3_sort s)
Check if a sort is a finite set sort.
Z3_string Z3_API Z3_simplifier_get_help(Z3_context c, Z3_simplifier t)
Return a string containing a description of parameters accepted by the given simplifier.
bool Z3_API Z3_goal_inconsistent(Z3_context c, Z3_goal g)
Return true if the given goal contains the formula false.
Z3_ast Z3_API Z3_mk_lambda_const(Z3_context c, unsigned num_bound, Z3_app const bound[], Z3_ast body)
Create a lambda expression using a list of constants that form the set of bound variables.
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....
void Z3_API Z3_solver_dec_ref(Z3_context c, Z3_solver s)
Decrement the reference counter of the given solver.
Z3_ast Z3_API Z3_mk_bvslt(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed less than.
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.
Z3_ast Z3_API Z3_mk_seq_length(Z3_context c, Z3_ast s)
Return the length of the sequence s.
Z3_ast Z3_API Z3_mk_numeral(Z3_context c, Z3_string numeral, Z3_sort ty)
Create a numeral of a given sort.
Z3_ast Z3_API Z3_mk_finite_set_difference(Z3_context c, Z3_ast s1, Z3_ast s2)
Create the set difference of two finite sets.
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.
Z3_ast Z3_API Z3_simplify_ex(Z3_context c, Z3_ast a, Z3_params p)
Interface to simplifier.
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_symbol Z3_API Z3_get_quantifier_skolem_id(Z3_context c, Z3_ast a)
Obtain skolem id of quantifier.
Z3_sort Z3_API Z3_get_seq_sort_basis(Z3_context c, Z3_sort s)
Retrieve basis sort for sequence sort.
void Z3_API Z3_solver_from_string(Z3_context c, Z3_solver s, Z3_string str)
load solver assertions from a string.
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.
Z3_ast Z3_API Z3_mk_unary_minus(Z3_context c, Z3_ast arg)
Create an AST node representing - arg.
bool Z3_API Z3_is_char_sort(Z3_context c, Z3_sort s)
Check if s is a character sort.
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...
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].
Z3_ast Z3_API Z3_mk_finite_set_subset(Z3_context c, Z3_ast s1, Z3_ast s2)
Check if one finite set is a subset of another.
void Z3_API Z3_simplifier_dec_ref(Z3_context c, Z3_simplifier g)
Decrement the reference counter of the given simplifier.
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_str_to_int(Z3_context c, Z3_ast s)
Convert string to integer.
void Z3_API Z3_goal_assert(Z3_context c, Z3_goal g, Z3_ast a)
Add a new formula a to the given goal. The formula is split according to the following procedure that...
Z3_symbol Z3_API Z3_param_descrs_get_name(Z3_context c, Z3_param_descrs p, unsigned i)
Return the name of the parameter at given index i.
Z3_string Z3_API Z3_func_decl_to_string(Z3_context c, Z3_func_decl d)
Z3_ast Z3_API Z3_mk_re_allchar(Z3_context c, Z3_sort regex_sort)
Create a regular expression that accepts all singleton sequences of the regular expression sort.
Z3_sort Z3_API Z3_mk_polymorphic_datatype(Z3_context c, Z3_symbol name, unsigned num_parameters, Z3_sort parameters[], unsigned num_constructors, Z3_constructor constructors[])
Create a parametric datatype with explicit type parameters.
Z3_ast Z3_API Z3_func_entry_get_value(Z3_context c, Z3_func_entry e)
Return the value of this point.
bool Z3_API Z3_is_quantifier_exists(Z3_context c, Z3_ast a)
Determine if ast is an existential quantifier.
Z3_sort Z3_API Z3_mk_uninterpreted_sort(Z3_context c, Z3_symbol s)
Create a free (uninterpreted) type using the given name (symbol).
bool Z3_API Z3_get_numeral_small(Z3_context c, Z3_ast a, int64_t *num, int64_t *den)
Return numeral value, as a pair of 64 bit numbers if the representation fits.
Z3_ast Z3_API Z3_mk_false(Z3_context c)
Create an AST node representing false.
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....
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 Z3_API Z3_mk_rotate_right(Z3_context c, unsigned i, Z3_ast t1)
Rotate bits of t1 to the right i times.
Z3_ast Z3_API Z3_get_pattern(Z3_context c, Z3_pattern p, unsigned idx)
Return i'th ast in pattern.
Z3_ast Z3_API Z3_mk_bvmul(Z3_context c, Z3_ast t1, Z3_ast t2)
Standard two's complement multiplication.
Z3_ast Z3_API Z3_mk_seq_at(Z3_context c, Z3_ast s, Z3_ast index)
Retrieve from s the unit sequence positioned at position index. The sequence is empty if the index is...
void Z3_API Z3_finalize_memory(void)
Destroy all allocated resources.
Z3_model Z3_API Z3_goal_convert_model(Z3_context c, Z3_goal g, Z3_model m)
Convert a model of the formulas of a goal to a model of an original goal. The model may be null,...
void Z3_API Z3_del_constructor(Z3_context c, Z3_constructor constr)
Reclaim memory allocated to constructor.
Z3_ast Z3_API Z3_mk_bvsgt(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed greater than.
Z3_string Z3_API Z3_ast_to_string(Z3_context c, Z3_ast a)
Convert the given AST node into a string.
Z3_ast Z3_API Z3_mk_re_complement(Z3_context c, Z3_ast re)
Create the complement of the regular language re.
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....
Z3_ast_vector Z3_API Z3_solver_get_assertions(Z3_context c, Z3_solver s)
Return the set of asserted formulas on the solver.
Z3_string Z3_API Z3_get_full_version(void)
Return a string that fully describes the version of Z3 in use.
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_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_ast Z3_API Z3_mk_lambda(Z3_context c, unsigned num_decls, Z3_sort const sorts[], Z3_symbol const decl_names[], Z3_ast body)
Create a lambda expression. It takes an expression body that contains bound variables of the same sor...
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_quantifier_num_patterns(Z3_context c, Z3_ast a)
Return number of patterns used in quantifier.
Z3_symbol Z3_API Z3_get_quantifier_bound_name(Z3_context c, Z3_ast a, unsigned i)
Return symbol of the i'th bound variable.
Z3_string Z3_API Z3_simplify_get_help(Z3_context c)
Return a string describing all available parameters.
unsigned Z3_API Z3_get_num_probes(Z3_context c)
Return the number of builtin probes available in Z3.
bool Z3_API Z3_stats_is_uint(Z3_context c, Z3_stats s, unsigned idx)
Return true if the given statistical data is a unsigned integer.
bool Z3_API Z3_stats_is_double(Z3_context c, Z3_stats s, unsigned idx)
Return true if the given statistical data is a double.
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_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_char_ptr Z3_API Z3_get_lstring(Z3_context c, Z3_ast s, unsigned *length)
Retrieve the string constant stored in s. The string can contain escape sequences....
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 bit-vector of size m to yield a new bit-vector of size n,...
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_ast Z3_API Z3_mk_mod(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1 mod arg2.
void Z3_API Z3_solver_interrupt(Z3_context c, Z3_solver s)
Solver local interrupt. Normally you should use Z3_interrupt to cancel solvers because only one solve...
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_set_add(Z3_context c, Z3_ast set, Z3_ast elem)
Add an element to a set.
Z3_ast Z3_API Z3_mk_ge(Z3_context c, Z3_ast t1, Z3_ast t2)
Create greater than or equal to.
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.
unsigned Z3_API Z3_get_array_arity(Z3_context c, Z3_sort s)
Return the arity (number of dimensions) of the given array sort.
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_ast Z3_API Z3_mk_bvadd_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, bool is_signed)
Create a predicate that checks that the bit-wise addition of t1 and t2 does not overflow.
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.
bool Z3_API Z3_solver_propagate_consequence(Z3_context c, Z3_solver_callback cb, unsigned num_fixed, Z3_ast const *fixed, unsigned num_eqs, Z3_ast const *eq_lhs, Z3_ast const *eq_rhs, Z3_ast conseq)
propagate a consequence based on fixed values and equalities. A client may invoke it during the pro...
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 ...
void Z3_API Z3_enable_concurrent_dec_ref(Z3_context c)
use concurrency control for dec-ref. Reference counting decrements are allowed in separate threads fr...
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.
char const * Z3_char_ptr
Definition z3_api.h:51
Z3_ast Z3_API Z3_mk_quantifier_const(Z3_context c, 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_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.
unsigned Z3_API Z3_model_get_num_sorts(Z3_context c, Z3_model m)
Return the number of uninterpreted sorts that m assigns an interpretation to.
Z3_param_kind
The different kinds of parameters that can be associated with parameter sets. (see Z3_mk_params).
Definition z3_api.h:1347
unsigned Z3_API Z3_get_pattern_num_terms(Z3_context c, Z3_pattern p)
Return number of terms in pattern.
const char * Z3_string
Z3 string type. It is just an alias for const char *.
Definition z3_api.h:50
void Z3_API Z3_parser_context_dec_ref(Z3_context c, Z3_parser_context pc)
Decrement the reference counter of the given Z3_parser_context object.
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.
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.
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.
Z3_ast Z3_API Z3_mk_fresh_const(Z3_context c, Z3_string prefix, Z3_sort ty)
Declare and create a fresh constant.
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.
Z3_sort_kind
The different kinds of Z3 types (See Z3_get_sort_kind).
Definition z3_api.h:110
void Z3_API Z3_solver_push(Z3_context c, Z3_solver s)
Create a backtracking point.
Z3_ast Z3_API Z3_mk_bvsub_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2, bool is_signed)
Create a predicate that checks that the bit-wise subtraction of t1 and t2 does not underflow.
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 the context target.
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_app Z3_API Z3_to_app(Z3_context c, Z3_ast a)
Convert an ast into an APP_AST. This is just type casting.
Z3_ast Z3_API Z3_mk_bvudiv(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned division.
Z3_sort Z3_API Z3_get_finite_set_sort_basis(Z3_context c, Z3_sort s)
Get the element sort of a finite set sort.
Z3_ast_vector Z3_API Z3_solver_get_trail(Z3_context c, Z3_solver s)
Return the trail modulo model conversion, in order of decision level The decision level can be retrie...
Z3_ast Z3_API Z3_mk_quantifier_ex(Z3_context c, 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 Z3_API Z3_mk_bvshl(Z3_context c, Z3_ast t1, Z3_ast t2)
Shift left.
void Z3_API Z3_set_error(Z3_context c, Z3_error_code e)
Set an error.
Z3_func_decl Z3_API Z3_mk_tree_order(Z3_context c, Z3_sort a, unsigned id)
create a tree ordering relation over signature a identified using index id.
bool Z3_API Z3_is_numeral_ast(Z3_context c, Z3_ast a)
Z3_ast Z3_API Z3_mk_finite_set_filter(Z3_context c, Z3_ast f, Z3_ast set)
Filter a finite set using a predicate.
Z3_ast Z3_API Z3_mk_bvsrem(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed remainder (sign follows dividend).
Z3_ast Z3_API Z3_solver_congruence_next(Z3_context c, Z3_solver s, Z3_ast a)
retrieve the next expression in the congruence class. The set of congruent siblings form a cyclic lis...
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_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_goal_num_exprs(Z3_context c, Z3_goal g)
Return the number of formulas, subformulas and terms in the given goal.
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_ast Z3_API Z3_mk_is_int(Z3_context c, Z3_ast t1)
Check if a real number is an integer.
void Z3_API Z3_params_set_bool(Z3_context c, Z3_params p, Z3_symbol k, bool v)
Add a Boolean parameter k with value v to the parameter set p.
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_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_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.
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 bit-vector of size m+i,...
Z3_ast Z3_API Z3_mk_seq_unit(Z3_context c, Z3_ast a)
Create a unit sequence of a.
Z3_ast Z3_API Z3_mk_re_intersect(Z3_context c, unsigned n, Z3_ast const args[])
Create the intersection of the regular languages.
Z3_ast Z3_API Z3_mk_finite_set_member(Z3_context c, Z3_ast elem, Z3_ast set)
Check if an element is a member of a finite set.
Z3_ast_vector Z3_API Z3_solver_cube(Z3_context c, Z3_solver s, Z3_ast_vector vars, unsigned backtrack_level)
extract a next cube for a solver. The last cube is the constant true or false. The number of (non-con...
Z3_ast Z3_API Z3_mk_u32string(Z3_context c, unsigned len, unsigned const chars[])
Create a string constant out of the string that is passed in It takes the length of the string as wel...
unsigned Z3_API Z3_goal_size(Z3_context c, Z3_goal g)
Return the number of formulas in the given goal.
Z3_func_decl Z3_API Z3_solver_propagate_declare(Z3_context c, Z3_symbol name, unsigned n, Z3_sort *domain, Z3_sort range)
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_select_n(Z3_context c, Z3_ast a, unsigned n, Z3_ast const *idxs)
n-ary Array read. The argument a is the array and idxs are the indices of the array that gets read.
bool Z3_API Z3_is_string_sort(Z3_context c, Z3_sort s)
Check if s is a string sort.
Z3_ast Z3_API Z3_mk_div(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1 div arg2.
Z3_tactic Z3_API Z3_tactic_fail(Z3_context c)
Return a tactic that always fails.
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.
Z3_ast Z3_API Z3_mk_pbge(Z3_context c, unsigned num_args, Z3_ast const args[], int const coeffs[], int k)
Pseudo-Boolean relations.
Z3_sort Z3_API Z3_mk_re_sort(Z3_context c, Z3_sort seq)
Create a regular expression sort out of a sequence sort.
Z3_ast Z3_API Z3_mk_pble(Z3_context c, unsigned num_args, Z3_ast const args[], int const coeffs[], int k)
Pseudo-Boolean relations.
void Z3_API Z3_model_dec_ref(Z3_context c, Z3_model m)
Decrement the reference counter of the given model.
Z3_sort Z3_API Z3_mk_datatype_sort(Z3_context c, Z3_symbol name, unsigned num_params, Z3_sort const params[])
create a forward reference to a recursive datatype being declared. The forward reference can be used ...
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.
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.
Z3_func_decl Z3_API Z3_mk_piecewise_linear_order(Z3_context c, Z3_sort a, unsigned id)
create a piecewise linear ordering relation over signature a and index id.
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.
Z3_string Z3_API Z3_pattern_to_string(Z3_context c, Z3_pattern p)
Z3_string Z3_API Z3_param_descrs_get_documentation(Z3_context c, Z3_param_descrs p, Z3_symbol s)
Retrieve documentation string corresponding to parameter name s.
Z3_ast Z3_API Z3_mk_finite_set_union(Z3_context c, Z3_ast s1, Z3_ast s2)
Create the union of two finite sets.
Z3_solver Z3_API Z3_mk_solver(Z3_context c)
Create a new solver. This solver is a "combined solver" (see combined_solver module) that internally ...
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.
int Z3_API Z3_get_symbol_int(Z3_context c, Z3_symbol s)
Return the symbol int value.
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.
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.
void Z3_API Z3_goal_inc_ref(Z3_context c, Z3_goal g)
Increment the reference counter of the given goal.
Z3_string Z3_API Z3_simplifier_get_descr(Z3_context c, Z3_string name)
Return a string containing a description of the simplifier with the given name.
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_ast Z3_API Z3_mk_implies(Z3_context c, Z3_ast t1, Z3_ast t2)
Create an AST node representing t1 implies t2.
unsigned Z3_API Z3_constructor_num_fields(Z3_context c, Z3_constructor constr)
Retrieve the number of fields of a constructor.
unsigned Z3_API Z3_get_datatype_sort_num_constructors(Z3_context c, Z3_sort t)
Return number of constructors for datatype.
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.
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_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_bvashr(Z3_context c, Z3_ast t1, Z3_ast t2)
Arithmetic shift right.
Z3_simplifier Z3_API Z3_simplifier_using_params(Z3_context c, Z3_simplifier t, Z3_params p)
Return a simplifier that applies t using the given set of parameters.
Z3_ast Z3_API Z3_mk_bv2int(Z3_context c, Z3_ast t1, 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_ast Z3_API Z3_mk_sbv_to_str(Z3_context c, Z3_ast s)
Signed bit-vector to string conversion.
Z3_sort Z3_API Z3_get_array_sort_domain_n(Z3_context c, Z3_sort t, unsigned idx)
Return the i'th domain sort of an n-dimensional array.
void Z3_API Z3_solver_import_model_converter(Z3_context ctx, Z3_solver src, Z3_solver dst)
Ad-hoc method for importing model conversion from solver.
Z3_ast Z3_API Z3_mk_set_del(Z3_context c, Z3_ast set, Z3_ast elem)
Remove an element to a set.
Z3_ast Z3_API Z3_mk_bvmul_no_overflow(Z3_context c, Z3_ast t1, Z3_ast t2, 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_re_union(Z3_context c, unsigned n, Z3_ast const args[])
Create the union of the regular languages.
Z3_param_descrs Z3_API Z3_simplifier_get_param_descrs(Z3_context c, Z3_simplifier t)
Return the parameter description set for the given simplifier object.
Z3_ast Z3_API Z3_mk_finite_set_intersect(Z3_context c, Z3_ast s1, Z3_ast s2)
Create the intersection of two finite sets.
Z3_ast Z3_API Z3_mk_bvor(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise or.
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_quantifier_num_no_patterns(Z3_context c, Z3_ast a)
Return number of no_patterns used in quantifier.
unsigned Z3_API Z3_get_num_simplifiers(Z3_context c)
Return the number of builtin simplifiers available in Z3.
Z3_func_decl Z3_API Z3_get_datatype_sort_constructor(Z3_context c, Z3_sort t, unsigned idx)
Return idx'th constructor.
Z3_lbool
Lifted Boolean type: false, undefined, true.
Definition z3_api.h:58
Z3_ast Z3_API Z3_mk_seq_empty(Z3_context c, Z3_sort seq)
Create an empty sequence of the sequence sort seq.
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_ast Z3_API Z3_mk_quantifier_const_ex(Z3_context c, 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_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_seq_suffix(Z3_context c, Z3_ast suffix, Z3_ast s)
Check if suffix is a suffix of s.
Z3_pattern Z3_API Z3_mk_pattern(Z3_context c, unsigned num_patterns, Z3_ast const terms[])
Create a pattern for quantifier instantiation.
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...
Z3_sort Z3_API Z3_get_re_sort_basis(Z3_context c, Z3_sort s)
Retrieve basis sort for regex sort.
void Z3_API Z3_solver_set_initial_value(Z3_context c, Z3_solver s, Z3_ast v, Z3_ast val)
provide an initialization hint to the solver. The initialization hint is used to calibrate an initial...
bool Z3_API Z3_is_recursive_datatype_sort(Z3_context c, Z3_sort s)
Check if s is a recursive datatype sort.
Z3_sort Z3_API Z3_mk_set_sort(Z3_context c, Z3_sort ty)
Create Set type.
bool Z3_API Z3_is_lambda(Z3_context c, Z3_ast a)
Determine if ast is a lambda expression.
Z3_solver Z3_API Z3_solver_translate(Z3_context source, Z3_solver s, Z3_context target)
Copy a solver s from the context source to the context target.
Z3_string Z3_API Z3_solver_get_help(Z3_context c, Z3_solver s)
Return a string describing all solver available parameters.
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.
void Z3_API Z3_probe_inc_ref(Z3_context c, Z3_probe p)
Increment the reference counter of the given probe.
Z3_sort Z3_API Z3_get_array_sort_domain(Z3_context c, Z3_sort t)
Return the domain of the given array sort. In the case of a multi-dimensional array,...
void Z3_API Z3_solver_propagate_register_cb(Z3_context c, Z3_solver_callback cb, Z3_ast e)
register an expression to propagate on with the solver. Only expressions of type Bool and type Bit-Ve...
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_string Z3_API Z3_get_probe_name(Z3_context c, unsigned i)
Return the name of the i probe.
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.
bool Z3_API Z3_get_numeral_uint64(Z3_context c, Z3_ast v, uint64_t *u)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit in a machine uint64_t int....
void Z3_API Z3_add_const_interp(Z3_context c, Z3_model m, Z3_func_decl f, Z3_ast a)
Add a constant interpretation.
Z3_string Z3_API Z3_sort_to_string(Z3_context c, Z3_sort s)
Z3_ast Z3_API Z3_mk_bvadd(Z3_context c, Z3_ast t1, Z3_ast t2)
Standard two's complement addition.
void Z3_API Z3_params_dec_ref(Z3_context c, Z3_params p)
Decrement the reference counter of the given parameter set.
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_ast Z3_API Z3_mk_str_lt(Z3_context c, Z3_ast prefix, Z3_ast s)
Check if s1 is lexicographically strictly less than s2.
Z3_ast Z3_API Z3_solver_congruence_root(Z3_context c, Z3_solver s, Z3_ast a)
retrieve the congruence closure root of an expression. The root is retrieved relative to the state wh...
Z3_string Z3_API Z3_model_to_string(Z3_context c, Z3_model m)
Convert the given model into a string.
unsigned Z3_API Z3_get_string_length(Z3_context c, Z3_ast s)
Retrieve the length of the unescaped string constant stored in s.
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.
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.
void Z3_API Z3_solver_propagate_final(Z3_context c, Z3_solver s, Z3_final_eh final_eh)
register a callback on final check. This provides freedom to the propagator to delay actions or imple...
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.
Z3_parameter_kind
The different kinds of parameters that can be associated with function symbols.
Definition z3_api.h:94
Z3_ast_vector 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.
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_ast Z3_API Z3_mk_bit2bool(Z3_context c, unsigned i, Z3_ast t1)
Extracts the bit at position i of a bit-vector and yields a boolean.
void Z3_API Z3_solver_register_on_clause(Z3_context c, Z3_solver s, void *user_context, Z3_on_clause_eh on_clause_eh)
register a callback to that retrieves assumed, inferred and deleted clauses during search.
Z3_string Z3_API Z3_goal_to_dimacs_string(Z3_context c, Z3_goal g, bool include_names)
Convert a goal into a DIMACS formatted string. The goal must be in CNF. You can convert a goal to CNF...
Z3_ast Z3_API Z3_mk_lt(Z3_context c, Z3_ast t1, Z3_ast t2)
Create less than.
Z3_ast Z3_API Z3_get_quantifier_no_pattern_ast(Z3_context c, Z3_ast a, unsigned i)
Return i'th no_pattern.
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.
Z3_ast Z3_API Z3_mk_bvugt(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned greater than.
unsigned Z3_API Z3_get_num_tactics(Z3_context c)
Return the number of builtin tactics available in Z3.
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.
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...
Z3_string Z3_API Z3_get_symbol_string(Z3_context c, Z3_symbol s)
Return the symbol name.
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_simplifier Z3_API Z3_mk_simplifier(Z3_context c, Z3_string name)
Return a simplifier associated with the given name. The complete list of simplifiers may be obtained ...
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.
Z3_ast Z3_API Z3_mk_bvnot(Z3_context c, Z3_ast t1)
Bitwise negation.
Z3_ast Z3_API Z3_mk_bvurem(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned remainder.
Z3_ast Z3_API Z3_mk_seq_foldli(Z3_context c, Z3_ast f, Z3_ast i, Z3_ast a, Z3_ast s)
Create a fold with index tracking of the function f over the sequence s with accumulator a starting a...
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.
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.
Z3_ast_vector Z3_API Z3_solver_get_non_units(Z3_context c, Z3_solver s)
Return the set of non units in the solver state.
bool Z3_API Z3_is_eq_func_decl(Z3_context c, Z3_func_decl f1, Z3_func_decl f2)
Compare terms.
Z3_ast Z3_API Z3_mk_seq_to_re(Z3_context c, Z3_ast seq)
Create a regular expression that accepts the sequence seq.
Z3_ast Z3_API Z3_mk_bvsub(Z3_context c, Z3_ast t1, Z3_ast t2)
Standard two's complement subtraction.
unsigned Z3_API Z3_get_relation_arity(Z3_context c, Z3_sort s)
Return arity of relation.
bool Z3_API Z3_get_finite_domain_sort_size(Z3_context c, Z3_sort s, uint64_t *r)
Store the size of the sort in r. Return false if the call failed. That is, Z3_get_sort_kind(s) == Z3_...
Z3_ast Z3_API Z3_mk_seq_index(Z3_context c, Z3_ast s, Z3_ast substr, Z3_ast offset)
Return index of the first occurrence of substr in s starting from offset offset. If s does not contai...
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_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_seq_concat(Z3_context c, unsigned n, Z3_ast const args[])
Concatenate sequences.
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.
Z3_ast Z3_API Z3_mk_re_range(Z3_context c, Z3_ast lo, Z3_ast hi)
Create the range regular expression over two sequences of length 1.
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_mk_set_member(Z3_context c, Z3_ast elem, Z3_ast set)
Check for set membership.
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.
void Z3_API Z3_goal_reset(Z3_context c, Z3_goal g)
Erase all formulas from the given goal.
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_probe_dec_ref(Z3_context c, Z3_probe p)
Decrement the reference counter of the given probe.
void Z3_API Z3_params_inc_ref(Z3_context c, Z3_params p)
Increment the reference counter of the given parameter set.
void Z3_API Z3_set_error_handler(Z3_context c, Z3_error_handler h)
Register a Z3 error handler.
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]).
Z3_ast Z3_API Z3_mk_seq_prefix(Z3_context c, Z3_ast prefix, Z3_ast s)
Check if prefix is a prefix of s.
Z3_config Z3_API Z3_mk_config(void)
Create a configuration object for the Z3 context object.
void Z3_API Z3_set_param_value(Z3_config c, Z3_string param_id, Z3_string param_value)
Set a configuration parameter.
Z3_ast Z3_API Z3_solver_congruence_explain(Z3_context c, Z3_solver s, Z3_ast a, Z3_ast b)
retrieve explanation for congruence.
unsigned Z3_API Z3_get_depth(Z3_context c, Z3_ast a)
Z3_sort Z3_API Z3_mk_bv_sort(Z3_context c, unsigned sz)
Create a bit-vector type of the given size.
Z3_ast Z3_API Z3_mk_bvult(Z3_context c, Z3_ast t1, Z3_ast t2)
Unsigned less than.
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.
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...
Z3_param_descrs Z3_API Z3_get_global_param_descrs(Z3_context c)
Retrieve description of global parameters.
Z3_ast Z3_API Z3_mk_re_power(Z3_context c, Z3_ast re, unsigned n)
Create a power regular expression.
void Z3_API Z3_solver_propagate_init(Z3_context c, Z3_solver s, void *user_context, Z3_push_eh push_eh, Z3_pop_eh pop_eh, Z3_fresh_eh fresh_eh)
register a user-propagator with the solver.
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.
void Z3_API Z3_tactic_dec_ref(Z3_context c, Z3_tactic g)
Decrement the reference counter of the given tactic.
Z3_ast Z3_API Z3_mk_bvnand(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise nand.
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...
Z3_solver Z3_API Z3_mk_simple_solver(Z3_context c)
Create a new incremental solver.
Z3_sort Z3_API Z3_get_range(Z3_context c, Z3_func_decl d)
Return the range of the given declaration.
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_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.
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.
Z3_ast Z3_API Z3_mk_re_star(Z3_context c, Z3_ast re)
Create the regular language re*.
Z3_ast Z3_API Z3_mk_bv_numeral(Z3_context c, unsigned sz, bool const *bits)
create a bit-vector numeral from a vector of Booleans.
Z3_ast Z3_API Z3_mk_char(Z3_context c, unsigned ch)
Create a character literal.
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_stats_size(Z3_context c, Z3_stats s)
Return the number of statistical data in s.
void Z3_API Z3_append_log(Z3_string string)
Append user-defined string to interaction log.
Z3_ast Z3_API Z3_get_quantifier_body(Z3_context c, Z3_ast a)
Return body of quantifier.
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_ast Z3_API Z3_mk_re_full(Z3_context c, Z3_sort re)
Create an universal regular expression of sort re.
Z3_model Z3_API Z3_mk_model(Z3_context c)
Create a fresh model object. It has reference count 0.
Z3_symbol Z3_API Z3_get_decl_name(Z3_context c, Z3_func_decl d)
Return the constant declaration name as a symbol.
Z3_ast Z3_API Z3_mk_seq_mapi(Z3_context c, Z3_ast f, Z3_ast i, Z3_ast s)
Create a map of the function f over the sequence s starting at index i.
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_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_mk_re_diff(Z3_context c, Z3_ast re1, Z3_ast re2)
Create the difference of regular expressions.
Z3_ast Z3_API Z3_mk_int64(Z3_context c, int64_t v, Z3_sort ty)
Create a numeral of a int, bit-vector, or finite-domain sort.
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:72
Z3_ast Z3_API Z3_mk_re_empty(Z3_context c, Z3_sort re)
Create an empty regular expression of sort re.
Z3_ast Z3_API Z3_mk_bvand(Z3_context c, Z3_ast t1, Z3_ast t2)
Bitwise and.
Z3_param_descrs Z3_API Z3_simplify_get_param_descrs(Z3_context c)
Return the parameter description set for the simplify procedure.
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_sort Z3_API Z3_mk_finite_domain_sort(Z3_context c, Z3_symbol name, uint64_t size)
Create a named finite domain sort.
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].
Z3_ast_kind Z3_API Z3_get_ast_kind(Z3_context c, Z3_ast a)
Return the kind of the given AST.
Z3_ast_vector 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_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_abs(Z3_context c, Z3_ast arg)
Take the absolute value of an integer.
Z3_ast Z3_API Z3_mk_bvsmod(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed remainder (sign follows divisor).
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_model Z3_API Z3_model_translate(Z3_context c, Z3_model m, Z3_context dst)
translate model from context c to context dst.
void Z3_API Z3_solver_get_levels(Z3_context c, Z3_solver s, Z3_ast_vector literals, unsigned sz, unsigned levels[])
retrieve the decision depth of Boolean literals (variables or their negations). Assumes a check-sat c...
void Z3_API Z3_get_version(unsigned *major, unsigned *minor, unsigned *build_number, unsigned *revision_number)
Return Z3 version number information.
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.
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.
void Z3_API Z3_solver_assert(Z3_context c, Z3_solver s, Z3_ast a)
Assert a constraint into the solver.
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...
void Z3_API Z3_parser_context_add_sort(Z3_context c, Z3_parser_context pc, Z3_sort s)
Add a sort declaration.
unsigned Z3_API Z3_get_quantifier_weight(Z3_context c, Z3_ast a)
Obtain weight of quantifier.
bool Z3_API Z3_model_eval(Z3_context c, Z3_model m, Z3_ast t, bool model_completion, Z3_ast *v)
Evaluate the AST node t in the given model. Return true if succeeded, and store the result in v.
unsigned Z3_API Z3_solver_get_num_scopes(Z3_context c, Z3_solver s)
Return the number of backtracking points.
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_del_constructor_list(Z3_context c, Z3_constructor_list clist)
Reclaim memory allocated for constructor list.
Z3_ast Z3_API Z3_mk_bound(Z3_context c, unsigned index, Z3_sort ty)
Create a variable.
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_ast Z3_API Z3_mk_real(Z3_context c, int num, int den)
Create a real from a fraction.
Z3_ast Z3_API Z3_substitute_funs(Z3_context c, Z3_ast a, unsigned num_funs, Z3_func_decl const from[], Z3_ast const to[])
Substitute functions in from with new expressions in to.
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.
Z3_error_code
Z3 error codes (See Z3_get_error_code).
Definition z3_api.h:1389
Z3_ast Z3_API Z3_mk_eq(Z3_context c, Z3_ast l, Z3_ast r)
Create an AST node representing l = r.
Z3_ast Z3_API Z3_mk_atleast(Z3_context c, unsigned num_args, Z3_ast const args[], unsigned k)
Pseudo-Boolean relations.
uint64_t Z3_API Z3_get_estimated_alloc_size(void)
Return the estimated allocated memory in bytes.
unsigned Z3_API Z3_model_get_num_funcs(Z3_context c, Z3_model m)
Return the number of function interpretations in the given model.
void Z3_API Z3_parser_context_inc_ref(Z3_context c, Z3_parser_context pc)
Increment the reference counter of the given Z3_parser_context 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_...
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...
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_string Z3_API Z3_get_simplifier_name(Z3_context c, unsigned i)
Return the name of the idx simplifier.
Z3_string Z3_API Z3_get_string(Z3_context c, Z3_ast s)
Retrieve the string constant stored in s. Characters outside the basic printable ASCII range are esca...
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_error_code Z3_API Z3_get_error_code(Z3_context c)
Return the error code for the last API call.
Z3_func_decl Z3_API Z3_mk_partial_order(Z3_context c, Z3_sort a, unsigned id)
create a partial ordering relation over signature a and index id.
Z3_ast Z3_API Z3_mk_empty_set(Z3_context c, Z3_sort domain)
Create the empty set.
Z3_sort Z3_API Z3_get_relation_column(Z3_context c, Z3_sort s, unsigned col)
Return sort at i'th column of relation sort.
void Z3_API Z3_solver_solve_for(Z3_context c, Z3_solver s, Z3_ast_vector variables, Z3_ast_vector terms, Z3_ast_vector guards)
retrieve a 'solution' for variables as defined by equalities in maintained by solvers....
Z3_string Z3_API Z3_get_tactic_name(Z3_context c, unsigned i)
Return the name of the idx tactic.
bool Z3_API Z3_is_string(Z3_context c, Z3_ast s)
Determine if s is a string constant.
Z3_ast Z3_API Z3_mk_re_loop(Z3_context c, Z3_ast r, unsigned lo, unsigned hi)
Create a regular expression loop. The supplied regular expression r is repeated between lo and hi tim...
Z3_ast Z3_API Z3_mk_char_to_int(Z3_context c, Z3_ast ch)
Create an integer (code point) from character.
Z3_ast Z3_API Z3_mk_repeat(Z3_context c, unsigned i, Z3_ast t1)
Repeat the given bit-vector up length i.
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_ast Z3_API Z3_mk_re_plus(Z3_context c, Z3_ast re)
Create the regular language re+.
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...
void Z3_API Z3_solver_pop(Z3_context c, Z3_solver s, unsigned n)
Backtrack n backtracking points.
Z3_ast Z3_API Z3_mk_int2real(Z3_context c, Z3_ast t1)
Coerce an integer to a real.
unsigned Z3_API Z3_get_index_value(Z3_context c, Z3_ast a)
Return index of de-Bruijn bound variable.
Z3_goal Z3_API Z3_mk_goal(Z3_context c, bool models, bool unsat_cores, bool proofs)
Create a goal (aka problem). A goal is essentially a set of formulas, that can be solved and/or trans...
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.
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 but two different AST objects can m...
Z3_ast Z3_API Z3_mk_unsigned_int64(Z3_context c, uint64_t v, Z3_sort ty)
Create a numeral of a int, bit-vector, or finite-domain sort.
Z3_symbol Z3_API Z3_get_sort_name(Z3_context c, Z3_sort d)
Return the sort name as a symbol.
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.
Z3_func_decl Z3_API Z3_get_datatype_sort_recognizer(Z3_context c, Z3_sort t, unsigned idx)
Return idx'th recognizer.
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_ast Z3_API Z3_mk_gt(Z3_context c, Z3_ast t1, Z3_ast t2)
Create greater than.
Z3_ast Z3_API Z3_mk_store(Z3_context c, Z3_ast a, Z3_ast i, Z3_ast v)
Array update.
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_tactic Z3_API Z3_tactic_skip(Z3_context c)
Return a tactic that just return the given goal.
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_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.
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.
bool Z3_API Z3_is_eq_ast(Z3_context c, Z3_ast t1, Z3_ast t2)
Compare terms.
bool Z3_API Z3_is_quantifier_forall(Z3_context c, Z3_ast a)
Determine if an ast is a universal quantifier.
void Z3_API Z3_tactic_inc_ref(Z3_context c, Z3_tactic t)
Increment the reference counter of the given tactic.
Z3_parser_context Z3_API Z3_mk_parser_context(Z3_context c)
Create a parser context.
bool Z3_API Z3_is_ground(Z3_context c, Z3_ast a)
Z3_ast Z3_API Z3_mk_real_int64(Z3_context c, int64_t num, int64_t den)
Create a real from a fraction of int64.
void Z3_API Z3_solver_from_file(Z3_context c, Z3_solver s, Z3_string file_name)
load solver assertions from a file.
Z3_ast Z3_API Z3_mk_seq_last_index(Z3_context c, Z3_ast s, Z3_ast substr)
Return index of the last occurrence of substr in s. If s does not contain substr, then the value is -...
Z3_ast Z3_API Z3_mk_xor(Z3_context c, Z3_ast t1, Z3_ast t2)
Create an AST node representing t1 xor t2.
void Z3_API Z3_solver_propagate_eq(Z3_context c, Z3_solver s, Z3_eq_eh eq_eh)
register a callback on expression equalities.
Z3_ast Z3_API Z3_mk_string(Z3_context c, Z3_string s)
Create a string constant out of the string that is passed in The string may contain escape encoding f...
Z3_func_decl Z3_API Z3_mk_transitive_closure(Z3_context c, Z3_func_decl f)
create transitive closure of binary relation.
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...
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.
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_ast Z3_API Z3_mk_map(Z3_context c, Z3_func_decl f, unsigned n, Z3_ast const *args)
Map f on the argument arrays.
Z3_ast Z3_API Z3_mk_finite_set_singleton(Z3_context c, Z3_ast elem)
Create a singleton finite set.
Z3_sort Z3_API Z3_mk_seq_sort(Z3_context c, Z3_sort s)
Create a sequence sort out of the sort for the elements.
Z3_ast_vector Z3_API Z3_solver_get_units(Z3_context c, Z3_solver s)
Return the set of units modulo model conversion.
Z3_ast Z3_API Z3_mk_const(Z3_context c, Z3_symbol s, Z3_sort ty)
Declare and create a constant.
Z3_symbol Z3_API Z3_mk_string_symbol(Z3_context c, Z3_string s)
Create a Z3 symbol using a C string.
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.
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_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_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...
void Z3_API Z3_stats_dec_ref(Z3_context c, Z3_stats s)
Decrement the reference counter of the given statistics object.
Z3_ast Z3_API Z3_mk_array_ext(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create array extensionality index given two arrays with the same sort. The meaning is given by the ax...
Z3_ast Z3_API Z3_mk_seq_replace_re_all(Z3_context c, Z3_ast s, Z3_ast re, Z3_ast dst)
Replace all occurrences of regular expression re with dst in s.
Z3_ast Z3_API Z3_mk_re_concat(Z3_context c, unsigned n, Z3_ast const args[])
Create the concatenation of the regular languages.
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_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 interpretation. It represents the value of f in a particular p...
Z3_func_decl Z3_API Z3_mk_rec_func_decl(Z3_context c, Z3_symbol s, unsigned domain_size, Z3_sort const domain[], Z3_sort range)
Declare a recursive function.
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....
Z3_ast Z3_API Z3_mk_seq_power(Z3_context c, Z3_ast s, Z3_ast n)
Create the sequence s concatenated n times with itself. The result is the empty sequence when n is no...
Z3_ast Z3_API Z3_mk_concat(Z3_context c, Z3_ast t1, Z3_ast t2)
Concatenate the given bit-vectors.
unsigned Z3_API Z3_get_quantifier_num_bound(Z3_context c, Z3_ast a)
Return number of bound variables of quantifier.
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_constructor_list Z3_API Z3_mk_constructor_list(Z3_context c, unsigned num_constructors, Z3_constructor const constructors[])
Create list of constructors.
Z3_apply_result Z3_API Z3_tactic_apply(Z3_context c, Z3_tactic t, Z3_goal g)
Apply tactic t to the goal g.
Z3_ast Z3_API Z3_mk_finite_set_map(Z3_context c, Z3_ast f, Z3_ast set)
Apply a function to all elements of a finite set.
void Z3_API Z3_solver_propagate_created(Z3_context c, Z3_solver s, Z3_created_eh created_eh)
register a callback when a new expression with a registered function is used by the solver The regist...
unsigned Z3_API Z3_get_sort_id(Z3_context c, Z3_sort s)
Return a unique identifier for s.
Z3_ast_vector Z3_API Z3_parser_context_from_string(Z3_context c, Z3_parser_context pc, Z3_string s)
Parse a string of SMTLIB2 commands. Return assertions.
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_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_stats Z3_API Z3_solver_get_statistics(Z3_context c, Z3_solver s)
Return statistics for the given solver.
Z3_ast Z3_API Z3_mk_bvneg(Z3_context c, Z3_ast t1)
Standard two's complement unary minus.
Z3_ast Z3_API Z3_mk_store_n(Z3_context c, Z3_ast a, unsigned n, Z3_ast const *idxs, Z3_ast v)
n-ary Array update.
Z3_func_decl Z3_API Z3_mk_linear_order(Z3_context c, Z3_sort a, unsigned id)
create a linear ordering relation over signature a. The relation is identified by the index id.
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.
Z3_ast Z3_API Z3_mk_seq_in_re(Z3_context c, Z3_ast seq, Z3_ast re)
Check if seq is in the language generated by the regular expression re.
Z3_sort Z3_API Z3_mk_bool_sort(Z3_context c)
Create the Boolean type.
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].
Z3_sort Z3_API Z3_mk_finite_set_sort(Z3_context c, Z3_sort elem_sort)
Create a finite set sort.
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.
Z3_string Z3_API Z3_solver_to_dimacs_string(Z3_context c, Z3_solver s, bool include_names)
Convert a solver into a DIMACS formatted string.
Z3_ast Z3_API Z3_mk_finite_set_size(Z3_context c, Z3_ast set)
Get the size (cardinality) of a finite set.
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.
unsigned Z3_API Z3_get_func_decl_id(Z3_context c, Z3_func_decl f)
Return a unique identifier for f.
Z3_ast Z3_API Z3_mk_set_difference(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Take the set difference between two sets.
void Z3_API Z3_solver_propagate_decide(Z3_context c, Z3_solver s, Z3_decide_eh decide_eh)
register a callback when the solver decides to split on a registered expression. The callback may cha...
Z3_ast Z3_API Z3_mk_lstring(Z3_context c, unsigned len, Z3_string s)
Create a string constant out of the string that is passed in It takes the length of the string as wel...
Z3_ast Z3_API Z3_mk_bvsdiv(Z3_context c, Z3_ast t1, Z3_ast t2)
Two's complement signed division.
Z3_ast Z3_API Z3_mk_bvlshr(Z3_context c, Z3_ast t1, Z3_ast t2)
Logical shift right.
Z3_ast Z3_API Z3_get_decl_ast_parameter(Z3_context c, Z3_func_decl d, unsigned idx)
Return the expression value associated with an expression parameter.
Z3_ast Z3_API Z3_mk_finite_set_range(Z3_context c, Z3_ast low, Z3_ast high)
Create a finite set of integers in the range [low, high].
Z3_pattern Z3_API Z3_get_quantifier_pattern_ast(Z3_context c, Z3_ast a, unsigned i)
Return i'th pattern.
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....
void Z3_API Z3_func_interp_set_else(Z3_context c, Z3_func_interp f, Z3_ast else_value)
Return the 'else' value of the given function interpretation.
void Z3_API Z3_goal_dec_ref(Z3_context c, Z3_goal g)
Decrement the reference counter of the given goal.
Z3_ast Z3_API Z3_mk_not(Z3_context c, Z3_ast a)
Create an AST node representing not(a).
void Z3_API Z3_solver_propagate_register(Z3_context c, Z3_solver s, Z3_ast e)
register an expression to propagate on with the solver. Only expressions of type Bool and type Bit-Ve...
Z3_ast Z3_API Z3_substitute_vars(Z3_context c, Z3_ast a, unsigned num_exprs, Z3_ast const to[])
Substitute the variables in a with the expressions in to. For every i smaller than num_exprs,...
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].
Z3_sort Z3_API Z3_mk_array_sort(Z3_context c, Z3_sort domain, Z3_sort range)
Create an array type.
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...
void Z3_API Z3_model_inc_ref(Z3_context c, Z3_model m)
Increment the reference counter of the given model.
Z3_ast Z3_API Z3_mk_seq_extract(Z3_context c, Z3_ast s, Z3_ast offset, Z3_ast length)
Extract subsequence starting at offset of length.
Z3_sort Z3_API Z3_mk_type_variable(Z3_context c, Z3_symbol s)
Create a type variable.
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_solver Z3_API Z3_solver_add_simplifier(Z3_context c, Z3_solver solver, Z3_simplifier simplifier)
Attach simplifier to a solver. The solver will use the simplifier for incremental pre-processing.
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_ast Z3_API Z3_mk_rem(Z3_context c, Z3_ast arg1, Z3_ast arg2)
Create an AST node representing arg1 rem arg2.
Z3_ast Z3_API Z3_mk_int_to_str(Z3_context c, Z3_ast s)
Integer to string conversion.
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_string Z3_API Z3_get_numeral_string(Z3_context c, Z3_ast a)
Return numeral value, as a decimal string of a numeric constant term.
void Z3_API Z3_solver_propagate_fixed(Z3_context c, Z3_solver s, Z3_fixed_eh fixed_eh)
register a callback for when an expression is bound to a fixed value. The supported expression types ...
Z3_ast Z3_API Z3_mk_seq_map(Z3_context c, Z3_ast f, Z3_ast s)
Create a map of the function f over the sequence s.
void Z3_API Z3_close_log(void)
Close interaction log.
Z3_ast Z3_API Z3_mk_char_is_digit(Z3_context c, Z3_ast ch)
Create a check if the character is a digit.
void Z3_API Z3_func_interp_add_entry(Z3_context c, Z3_func_interp fi, Z3_ast_vector args, Z3_ast value)
add a function entry to a function interpretation.
bool Z3_API Z3_is_well_sorted(Z3_context c, Z3_ast t)
Return true if the given expression t is well sorted.
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_as_array(Z3_context c, Z3_func_decl f)
Create array with the same interpretation as a function. The array satisfies the property (f x) = (se...
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_solver_to_string(Z3_context c, Z3_solver s)
Convert a solver into a string.
Z3_ast Z3_API Z3_mk_seq_foldl(Z3_context c, Z3_ast f, Z3_ast a, Z3_ast s)
Create a fold of the function f over the sequence s with accumulator a.
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_string Z3_API Z3_get_numeral_binary_string(Z3_context c, Z3_ast a)
Return numeral value, as a binary string of a numeric constant term.
Z3_sort Z3_API Z3_get_quantifier_bound_sort(Z3_context c, Z3_ast a, unsigned i)
Return sort of the i'th bound variable.
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_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...
Z3_string * Z3_string_ptr
Definition z3_api.h:52
Z3_ast Z3_API Z3_goal_formula(Z3_context c, Z3_goal g, unsigned idx)
Return a formula from the given goal.
Z3_ast Z3_API Z3_mk_divides(Z3_context c, Z3_ast t1, Z3_ast t2)
Create division predicate.
Z3_symbol Z3_API Z3_mk_int_symbol(Z3_context c, int i)
Create a Z3 symbol using an integer.
Z3_ast Z3_API Z3_mk_char_from_bv(Z3_context c, Z3_ast bv)
Create a character from a bit-vector (code point).
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.
bool Z3_API Z3_get_numeral_rational_int64(Z3_context c, Z3_ast v, int64_t *num, int64_t *den)
Similar to Z3_get_numeral_string, but only succeeds if the value can fit as a rational number as mach...
Z3_probe Z3_API Z3_probe_const(Z3_context x, double val)
Return a probe that always evaluates to val.
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 const sorts[], unsigned sort_refs[])
Create a constructor.
Z3_string Z3_API Z3_goal_to_string(Z3_context c, Z3_goal g)
Convert a goal into a string.
Z3_ast Z3_API Z3_mk_atmost(Z3_context c, unsigned num_args, Z3_ast const args[], unsigned k)
Pseudo-Boolean relations.
bool Z3_API Z3_is_eq_sort(Z3_context c, Z3_sort s1, Z3_sort s2)
compare sorts.
void Z3_API Z3_del_config(Z3_config c)
Delete the given configuration object.
double Z3_API Z3_get_numeral_double(Z3_context c, Z3_ast a)
Return numeral as a double.
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_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_ast Z3_API Z3_mk_real2int(Z3_context c, Z3_ast t1)
Coerce a real to an integer.
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_reset_memory(void)
Reset all allocated resources.
void Z3_API Z3_solver_inc_ref(Z3_context c, Z3_solver s)
Increment the reference counter of the given solver.
bool Z3_API Z3_is_app(Z3_context c, Z3_ast a)
bool Z3_API Z3_solver_next_split(Z3_context c, Z3_solver_callback cb, Z3_ast t, unsigned idx, Z3_lbool phase)
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 ...
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.
Z3_symbol Z3_API Z3_get_quantifier_id(Z3_context c, Z3_ast a)
Obtain id of quantifier.
bool Z3_API Z3_is_re_sort(Z3_context c, Z3_sort s)
Check if s is a regular expression sort.
Z3_ast Z3_API Z3_mk_string_to_code(Z3_context c, Z3_ast a)
String to code conversion.
Z3_ast Z3_API Z3_mk_seq_replace_re(Z3_context c, Z3_ast s, Z3_ast re, Z3_ast dst)
Replace the first occurrence of regular expression re with dst in s.
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_mk_ubv_to_str(Z3_context c, Z3_ast s)
Unsigned bit-vector to string conversion.
Z3_sort Z3_API Z3_mk_string_sort(Z3_context c)
Create a sort for unicode strings.
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_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_sort Z3_API Z3_get_sort(Z3_context c, Z3_ast a)
Return the sort of an AST node.
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'th accessor for the idx_c'th constructor.
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_ast Z3_API Z3_mk_seq_nth(Z3_context c, Z3_ast s, Z3_ast index)
Retrieve from s the element positioned at position index. The function is under-specified if the inde...
Z3_ast Z3_API Z3_mk_seq_contains(Z3_context c, Z3_ast container, Z3_ast containee)
Check if container contains containee.
void Z3_API Z3_solver_reset(Z3_context c, Z3_solver s)
Remove all assertions from the solver.
bool Z3_API Z3_is_algebraic_number(Z3_context c, Z3_ast a)
Return true if the given AST is a real algebraic number.
@ Z3_PRINT_SMTLIB2_COMPLIANT
Definition z3_api.h:1367
@ Z3_PRINT_SMTLIB_FULL
Definition z3_api.h:1365
@ Z3_PRINT_LOW_LEVEL
Definition z3_api.h:1366
@ Z3_APP_AST
Definition z3_api.h:144
@ Z3_VAR_AST
Definition z3_api.h:145
@ Z3_SORT_AST
Definition z3_api.h:147
@ Z3_NUMERAL_AST
Definition z3_api.h:143
@ Z3_FUNC_DECL_AST
Definition z3_api.h:148
@ Z3_QUANTIFIER_AST
Definition z3_api.h:146
@ Z3_UNKNOWN_AST
Definition z3_api.h:149
@ Z3_GOAL_UNDER
Definition z3_api.h:1432
@ Z3_GOAL_UNDER_OVER
Definition z3_api.h:1434
@ Z3_GOAL_OVER
Definition z3_api.h:1433
@ Z3_GOAL_PRECISE
Definition z3_api.h:1431
@ Z3_OP_BSMOD
Definition z3_api.h:1051
@ Z3_OP_SUB
Definition z3_api.h:1011
@ Z3_OP_STRING_LE
Definition z3_api.h:1206
@ Z3_OP_SIGN_EXT
Definition z3_api.h:1079
@ Z3_OP_FPA_MUL
Definition z3_api.h:1279
@ Z3_OP_RE_OF_PRED
Definition z3_api.h:1223
@ Z3_OP_FPA_IS_NEGATIVE
Definition z3_api.h:1299
@ Z3_OP_FINITE_SET_SIZE
Definition z3_api.h:1321
@ Z3_OP_FPA_ROUND_TO_INTEGRAL
Definition z3_api.h:1287
@ Z3_OP_FD_CONSTANT
Definition z3_api.h:1170
@ Z3_OP_BADD
Definition z3_api.h:1043
@ Z3_OP_BIT1
Definition z3_api.h:1040
@ Z3_OP_BREDAND
Definition z3_api.h:1085
@ Z3_OP_MUL
Definition z3_api.h:1013
@ Z3_OP_SEQ_POWER
Definition z3_api.h:1196
@ Z3_OP_XOR3
Definition z3_api.h:1101
@ Z3_OP_FINITE_SET_MAP
Definition z3_api.h:1323
@ Z3_OP_FPA_SUB
Definition z3_api.h:1277
@ Z3_OP_UGEQ
Definition z3_api.h:1063
@ Z3_OP_RE_POWER
Definition z3_api.h:1218
@ Z3_OP_SBV_TO_STR
Definition z3_api.h:1202
@ Z3_OP_BUDIV
Definition z3_api.h:1048
@ Z3_OP_FPA_ABS
Definition z3_api.h:1282
@ Z3_OP_SLT
Definition z3_api.h:1066
@ Z3_OP_BASHR
Definition z3_api.h:1090
@ Z3_OP_PR_LEMMA
Definition z3_api.h:1136
@ Z3_OP_PR_BIND
Definition z3_api.h:1124
@ Z3_OP_SEQ_LENGTH
Definition z3_api.h:1187
@ Z3_OP_SEQ_FOLDLI
Definition z3_api.h:1195
@ Z3_OP_FPA_PLUS_ZERO
Definition z3_api.h:1273
@ Z3_OP_PR_IFF_FALSE
Definition z3_api.h:1139
@ Z3_OP_SEQ_AT
Definition z3_api.h:1185
@ Z3_OP_INTERNAL
Definition z3_api.h:1329
@ Z3_OP_PR_MONOTONICITY
Definition z3_api.h:1122
@ Z3_OP_PR_UNIT_RESOLUTION
Definition z3_api.h:1137
@ Z3_OP_FINITE_SET_EXT
Definition z3_api.h:1326
@ Z3_OP_RE_PLUS
Definition z3_api.h:1209
@ Z3_OP_FPA_NUM
Definition z3_api.h:1269
@ Z3_OP_FINITE_SET_FILTER
Definition z3_api.h:1324
@ Z3_OP_LABEL
Definition z3_api.h:1236
@ Z3_OP_ARRAY_EXT
Definition z3_api.h:1036
@ Z3_OP_SEQ_CONCAT
Definition z3_api.h:1176
@ Z3_OP_RE_EMPTY_SET
Definition z3_api.h:1220
@ Z3_OP_SEQ_INDEX
Definition z3_api.h:1188
@ Z3_OP_SET_DIFFERENCE
Definition z3_api.h:1032
@ Z3_OP_PR_IFF_TRUE
Definition z3_api.h:1138
@ Z3_OP_RE_RANGE
Definition z3_api.h:1214
@ Z3_OP_BUDIV_I
Definition z3_api.h:1107
@ Z3_OP_DISTINCT
Definition z3_api.h:993
@ Z3_OP_RE_REVERSE
Definition z3_api.h:1224
@ Z3_OP_FINITE_SET_RANGE
Definition z3_api.h:1325
@ Z3_OP_SEQ_REPLACE_RE
Definition z3_api.h:1182
@ Z3_OP_EXTRACT
Definition z3_api.h:1081
@ Z3_OP_RA_STORE
Definition z3_api.h:1157
@ Z3_OP_FPA_FMA
Definition z3_api.h:1285
@ Z3_OP_BOR
Definition z3_api.h:1071
@ Z3_OP_FPA_GT
Definition z3_api.h:1291
@ Z3_OP_DT_UPDATE_FIELD
Definition z3_api.h:1244
@ Z3_OP_BUREM_I
Definition z3_api.h:1109
@ Z3_OP_SET_COMPLEMENT
Definition z3_api.h:1033
@ Z3_OP_PR_QUANT_INST
Definition z3_api.h:1134
@ Z3_OP_RA_WIDEN
Definition z3_api.h:1162
@ Z3_OP_RE_COMPLEMENT
Definition z3_api.h:1219
@ Z3_OP_AND
Definition z3_api.h:995
@ Z3_OP_FINITE_SET_UNION
Definition z3_api.h:1317
@ Z3_OP_STRING_LT
Definition z3_api.h:1205
@ Z3_OP_SEQ_MAP
Definition z3_api.h:1192
@ Z3_OP_ARRAY_MAP
Definition z3_api.h:1028
@ Z3_OP_PR_REFLEXIVITY
Definition z3_api.h:1118
@ Z3_OP_FALSE
Definition z3_api.h:991
@ Z3_OP_PR_DEF_AXIOM
Definition z3_api.h:1141
@ Z3_OP_SPECIAL_RELATION_TRC
Definition z3_api.h:1259
@ Z3_OP_XOR
Definition z3_api.h:998
@ Z3_OP_BIT2BOOL
Definition z3_api.h:1096
@ Z3_OP_FPA_GE
Definition z3_api.h:1293
@ Z3_OP_RA_IS_EMPTY
Definition z3_api.h:1159
@ Z3_OP_PR_MODUS_PONENS
Definition z3_api.h:1117
@ Z3_OP_RA_EMPTY
Definition z3_api.h:1158
@ Z3_OP_PR_MODUS_PONENS_OEQ
Definition z3_api.h:1152
@ Z3_OP_SEQ_REPLACE
Definition z3_api.h:1181
@ Z3_OP_DT_IS
Definition z3_api.h:1242
@ Z3_OP_CONST_ARRAY
Definition z3_api.h:1027
@ Z3_OP_FINITE_SET_SINGLETON
Definition z3_api.h:1316
@ Z3_OP_IMPLIES
Definition z3_api.h:1000
@ Z3_OP_SELECT
Definition z3_api.h:1026
@ Z3_OP_FPA_TO_FP
Definition z3_api.h:1303
@ Z3_OP_FPA_NEG
Definition z3_api.h:1278
@ Z3_OP_FPA_NAN
Definition z3_api.h:1272
@ Z3_OP_RA_CLONE
Definition z3_api.h:1169
@ Z3_OP_ADD
Definition z3_api.h:1010
@ Z3_OP_GT
Definition z3_api.h:1009
@ Z3_OP_PR_NOT_OR_ELIM
Definition z3_api.h:1127
@ Z3_OP_FPA_TO_REAL
Definition z3_api.h:1307
@ Z3_OP_ULEQ
Definition z3_api.h:1061
@ Z3_OP_FPA_EQ
Definition z3_api.h:1289
@ Z3_OP_INT2BV
Definition z3_api.h:1097
@ Z3_OP_TO_INT
Definition z3_api.h:1019
@ Z3_OP_PB_EQ
Definition z3_api.h:1251
@ Z3_OP_PR_TRANSITIVITY
Definition z3_api.h:1120
@ Z3_OP_BNUM
Definition z3_api.h:1039
@ Z3_OP_REM
Definition z3_api.h:1016
@ Z3_OP_POWER
Definition z3_api.h:1021
@ Z3_OP_RE_DERIVATIVE
Definition z3_api.h:1225
@ Z3_OP_SET_UNION
Definition z3_api.h:1030
@ Z3_OP_FPA_LE
Definition z3_api.h:1292
@ Z3_OP_FPA_MAX
Definition z3_api.h:1284
@ Z3_OP_MOD
Definition z3_api.h:1017
@ Z3_OP_RE_UNION
Definition z3_api.h:1213
@ Z3_OP_OEQ
Definition z3_api.h:1001
@ Z3_OP_BCOMP
Definition z3_api.h:1086
@ Z3_OP_CHAR_LE
Definition z3_api.h:1229
@ Z3_OP_FPA_RM_TOWARD_NEGATIVE
Definition z3_api.h:1266
@ Z3_OP_BSMOD_I
Definition z3_api.h:1110
@ Z3_OP_PR_IFF_OEQ
Definition z3_api.h:1148
@ Z3_OP_BNOR
Definition z3_api.h:1075
@ Z3_OP_UMINUS
Definition z3_api.h:1012
@ Z3_OP_SEQ_UNIT
Definition z3_api.h:1174
@ Z3_OP_DT_RECOGNISER
Definition z3_api.h:1241
@ Z3_OP_ITE
Definition z3_api.h:994
@ Z3_OP_FPA_IS_ZERO
Definition z3_api.h:1296
@ Z3_OP_FPA_IS_SUBNORMAL
Definition z3_api.h:1298
@ Z3_OP_EQ
Definition z3_api.h:992
@ Z3_OP_INT_TO_STR
Definition z3_api.h:1200
@ Z3_OP_ROTATE_RIGHT
Definition z3_api.h:1092
@ Z3_OP_RA_COMPLEMENT
Definition z3_api.h:1167
@ Z3_OP_GE
Definition z3_api.h:1007
@ Z3_OP_FPA_RM_NEAREST_TIES_TO_EVEN
Definition z3_api.h:1263
@ Z3_OP_PR_ASSERTED
Definition z3_api.h:1115
@ Z3_OP_DT_ACCESSOR
Definition z3_api.h:1243
@ Z3_OP_BLSHR
Definition z3_api.h:1089
@ Z3_OP_IFF
Definition z3_api.h:997
@ Z3_OP_FPA_BVWRAP
Definition z3_api.h:1311
@ Z3_OP_UNINTERPRETED
Definition z3_api.h:1332
@ Z3_OP_AS_ARRAY
Definition z3_api.h:1035
@ Z3_OP_FPA_BV2RM
Definition z3_api.h:1312
@ Z3_OP_RE_CONCAT
Definition z3_api.h:1212
@ Z3_OP_FPA_PLUS_INF
Definition z3_api.h:1270
@ Z3_OP_PR_REWRITE_STAR
Definition z3_api.h:1129
@ Z3_OP_PR_HYPOTHESIS
Definition z3_api.h:1135
@ Z3_OP_BNAND
Definition z3_api.h:1074
@ Z3_OP_PB_AT_LEAST
Definition z3_api.h:1248
@ Z3_OP_PR_NNF_NEG
Definition z3_api.h:1150
@ Z3_OP_FPA_DIV
Definition z3_api.h:1280
@ Z3_OP_PR_ELIM_UNUSED_VARS
Definition z3_api.h:1132
@ Z3_OP_RA_UNION
Definition z3_api.h:1161
@ Z3_OP_PR_CLAUSE_TRAIL
Definition z3_api.h:1145
@ Z3_OP_PR_TH_LEMMA
Definition z3_api.h:1153
@ Z3_OP_UGT
Definition z3_api.h:1067
@ Z3_OP_BXOR
Definition z3_api.h:1073
@ Z3_OP_SEQ_SUFFIX
Definition z3_api.h:1178
@ Z3_OP_BSMUL_NO_OVFL
Definition z3_api.h:1103
@ Z3_OP_FPA_RM_NEAREST_TIES_TO_AWAY
Definition z3_api.h:1264
@ Z3_OP_FINITE_SET_IN
Definition z3_api.h:1320
@ Z3_OP_RA_SELECT
Definition z3_api.h:1168
@ Z3_OP_IS_INT
Definition z3_api.h:1020
@ Z3_OP_REPEAT
Definition z3_api.h:1082
@ Z3_OP_RA_JOIN
Definition z3_api.h:1160
@ Z3_OP_PR_PULL_QUANT
Definition z3_api.h:1130
@ Z3_OP_FPA_SQRT
Definition z3_api.h:1286
@ Z3_OP_CHAR_CONST
Definition z3_api.h:1228
@ Z3_OP_FPA_RM_TOWARD_ZERO
Definition z3_api.h:1267
@ Z3_OP_SEQ_IN_RE
Definition z3_api.h:1191
@ Z3_OP_BSHL
Definition z3_api.h:1088
@ Z3_OP_BSDIV
Definition z3_api.h:1047
@ Z3_OP_OR
Definition z3_api.h:996
@ Z3_OP_EXT_ROTATE_LEFT
Definition z3_api.h:1093
@ Z3_OP_FPA_TO_SBV
Definition z3_api.h:1306
@ Z3_OP_PB_GE
Definition z3_api.h:1250
@ Z3_OP_BXNOR
Definition z3_api.h:1076
@ Z3_OP_STR_TO_INT
Definition z3_api.h:1199
@ Z3_OP_LABEL_LIT
Definition z3_api.h:1237
@ Z3_OP_FINITE_SET_MAP_INVERSE
Definition z3_api.h:1327
@ Z3_OP_FINITE_SET_SUBSET
Definition z3_api.h:1322
@ Z3_OP_RECURSIVE
Definition z3_api.h:1330
@ Z3_OP_FD_LT
Definition z3_api.h:1171
@ Z3_OP_UBV_TO_STR
Definition z3_api.h:1201
@ Z3_OP_ABS
Definition z3_api.h:1022
@ Z3_OP_SET_INTERSECT
Definition z3_api.h:1031
@ Z3_OP_FPA_MIN
Definition z3_api.h:1283
@ Z3_OP_BSMUL_NO_UDFL
Definition z3_api.h:1105
@ Z3_OP_TO_REAL
Definition z3_api.h:1018
@ Z3_OP_EXT_ROTATE_RIGHT
Definition z3_api.h:1094
@ Z3_OP_PR_APPLY_DEF
Definition z3_api.h:1147
@ Z3_OP_RE_DIFF
Definition z3_api.h:1215
@ Z3_OP_DIV
Definition z3_api.h:1014
@ Z3_OP_BSUB
Definition z3_api.h:1044
@ Z3_OP_BNEG
Definition z3_api.h:1042
@ Z3_OP_SEQ_CONTAINS
Definition z3_api.h:1179
@ Z3_OP_PR_SKOLEMIZE
Definition z3_api.h:1151
@ Z3_OP_STR_TO_CODE
Definition z3_api.h:1203
@ Z3_OP_FINITE_SET_INTERSECT
Definition z3_api.h:1318
@ Z3_OP_FPA_RM_TOWARD_POSITIVE
Definition z3_api.h:1265
@ Z3_OP_FPA_ADD
Definition z3_api.h:1276
@ Z3_OP_PR_COMMUTATIVITY
Definition z3_api.h:1140
@ Z3_OP_RE_FULL_SET
Definition z3_api.h:1221
@ Z3_OP_SET_SUBSET
Definition z3_api.h:1034
@ Z3_OP_BSREM
Definition z3_api.h:1049
@ Z3_OP_NOT
Definition z3_api.h:999
@ Z3_OP_BSREM_I
Definition z3_api.h:1108
@ Z3_OP_FINITE_SET_DIFFERENCE
Definition z3_api.h:1319
@ Z3_OP_SEQ_NTH
Definition z3_api.h:1186
@ Z3_OP_SEQ_LAST_INDEX
Definition z3_api.h:1189
@ Z3_OP_PR_PUSH_QUANT
Definition z3_api.h:1131
@ Z3_OP_PR_SYMMETRY
Definition z3_api.h:1119
@ Z3_OP_SPECIAL_RELATION_PO
Definition z3_api.h:1255
@ Z3_OP_RE_LOOP
Definition z3_api.h:1217
@ Z3_OP_ZERO_EXT
Definition z3_api.h:1080
@ Z3_OP_SBV2INT
Definition z3_api.h:1099
@ Z3_OP_SLEQ
Definition z3_api.h:1062
@ Z3_OP_RA_FILTER
Definition z3_api.h:1164
@ Z3_OP_FPA_MINUS_INF
Definition z3_api.h:1271
@ Z3_OP_PR_QUANT_INTRO
Definition z3_api.h:1123
@ Z3_OP_SEQ_MAPI
Definition z3_api.h:1193
@ Z3_OP_PR_DER
Definition z3_api.h:1133
@ Z3_OP_BUREM0
Definition z3_api.h:1058
@ Z3_OP_SEQ_EMPTY
Definition z3_api.h:1175
@ Z3_OP_PR_HYPER_RESOLVE
Definition z3_api.h:1154
@ Z3_OP_FPA_IS_POSITIVE
Definition z3_api.h:1300
@ Z3_OP_LT
Definition z3_api.h:1008
@ Z3_OP_BSDIV0
Definition z3_api.h:1055
@ Z3_OP_CHAR_TO_BV
Definition z3_api.h:1231
@ Z3_OP_PR_GOAL
Definition z3_api.h:1116
@ Z3_OP_SPECIAL_RELATION_TC
Definition z3_api.h:1258
@ Z3_OP_RA_PROJECT
Definition z3_api.h:1163
@ Z3_OP_FPA_IS_NAN
Definition z3_api.h:1294
@ Z3_OP_SPECIAL_RELATION_TO
Definition z3_api.h:1257
@ Z3_OP_PR_TRUE
Definition z3_api.h:1114
@ Z3_OP_RA_RENAME
Definition z3_api.h:1166
@ Z3_OP_AGNUM
Definition z3_api.h:1005
@ Z3_OP_BNOT
Definition z3_api.h:1072
@ Z3_OP_FPA_IS_INF
Definition z3_api.h:1295
@ Z3_OP_BSMOD0
Definition z3_api.h:1059
@ Z3_OP_CONCAT
Definition z3_api.h:1078
@ Z3_OP_FPA_TO_FP_UNSIGNED
Definition z3_api.h:1304
@ Z3_OP_PR_REDUNDANT_DEL
Definition z3_api.h:1144
@ Z3_OP_PR_NNF_POS
Definition z3_api.h:1149
@ Z3_OP_SEQ_REPLACE_ALL
Definition z3_api.h:1184
@ Z3_OP_FPA_REM
Definition z3_api.h:1281
@ Z3_OP_SEQ_EXTRACT
Definition z3_api.h:1180
@ Z3_OP_RA_NEGATION_FILTER
Definition z3_api.h:1165
@ Z3_OP_PR_LEMMA_ADD
Definition z3_api.h:1143
@ Z3_OP_RE_OPTION
Definition z3_api.h:1211
@ Z3_OP_BUDIV0
Definition z3_api.h:1056
@ Z3_OP_PR_REWRITE
Definition z3_api.h:1128
@ Z3_OP_BV2INT
Definition z3_api.h:1098
@ Z3_OP_RE_INTERSECT
Definition z3_api.h:1216
@ Z3_OP_PR_DEF_INTRO
Definition z3_api.h:1146
@ Z3_OP_FPA_MINUS_ZERO
Definition z3_api.h:1274
@ Z3_OP_SPECIAL_RELATION_PLO
Definition z3_api.h:1256
@ Z3_OP_BUMUL_NO_OVFL
Definition z3_api.h:1104
@ Z3_OP_SGEQ
Definition z3_api.h:1064
@ Z3_OP_ROTATE_LEFT
Definition z3_api.h:1091
@ Z3_OP_PR_UNDEF
Definition z3_api.h:1113
@ Z3_OP_PR_AND_ELIM
Definition z3_api.h:1126
@ Z3_OP_PR_ASSUMPTION_ADD
Definition z3_api.h:1142
@ Z3_OP_FPA_TO_UBV
Definition z3_api.h:1305
@ Z3_OP_FPA_LT
Definition z3_api.h:1290
@ Z3_OP_BMUL
Definition z3_api.h:1045
@ Z3_OP_PR_TRANSITIVITY_STAR
Definition z3_api.h:1121
@ Z3_OP_PB_LE
Definition z3_api.h:1249
@ Z3_OP_PB_AT_MOST
Definition z3_api.h:1247
@ Z3_OP_CHAR_TO_INT
Definition z3_api.h:1230
@ Z3_OP_FPA_IS_NORMAL
Definition z3_api.h:1297
@ Z3_OP_ULT
Definition z3_api.h:1065
@ Z3_OP_STORE
Definition z3_api.h:1025
@ Z3_OP_SGT
Definition z3_api.h:1068
@ Z3_OP_STR_FROM_CODE
Definition z3_api.h:1204
@ Z3_OP_CARRY
Definition z3_api.h:1100
@ Z3_OP_DT_CONSTRUCTOR
Definition z3_api.h:1240
@ Z3_OP_BIT0
Definition z3_api.h:1041
@ Z3_OP_CHAR_FROM_BV
Definition z3_api.h:1232
@ Z3_OP_CHAR_IS_DIGIT
Definition z3_api.h:1233
@ Z3_OP_RE_FULL_CHAR_SET
Definition z3_api.h:1222
@ Z3_OP_FINITE_SET_EMPTY
Definition z3_api.h:1315
@ Z3_OP_BUREM
Definition z3_api.h:1050
@ Z3_OP_SEQ_PREFIX
Definition z3_api.h:1177
@ Z3_OP_SEQ_FOLDL
Definition z3_api.h:1194
@ Z3_OP_FPA_FP
Definition z3_api.h:1302
@ Z3_OP_SEQ_REPLACE_RE_ALL
Definition z3_api.h:1183
@ Z3_OP_BREDOR
Definition z3_api.h:1084
@ Z3_OP_BSREM0
Definition z3_api.h:1057
@ Z3_OP_LE
Definition z3_api.h:1006
@ Z3_OP_SPECIAL_RELATION_LO
Definition z3_api.h:1254
@ Z3_OP_BSDIV_I
Definition z3_api.h:1106
@ Z3_OP_PR_DISTRIBUTIVITY
Definition z3_api.h:1125
@ Z3_OP_FPA_TO_IEEE_BV
Definition z3_api.h:1309
@ Z3_OP_IDIV
Definition z3_api.h:1015
@ Z3_OP_SEQ_TO_RE
Definition z3_api.h:1190
@ Z3_OP_ANUM
Definition z3_api.h:1004
@ Z3_OP_RE_STAR
Definition z3_api.h:1210
@ Z3_OP_BAND
Definition z3_api.h:1070
@ Z3_OP_ARRAY_DEFAULT
Definition z3_api.h:1029
@ Z3_OP_TRUE
Definition z3_api.h:990
@ Z3_PK_DOUBLE
Definition z3_api.h:1350
@ Z3_PK_SYMBOL
Definition z3_api.h:1351
@ Z3_PK_BOOL
Definition z3_api.h:1349
@ Z3_PK_OTHER
Definition z3_api.h:1353
@ Z3_PK_UINT
Definition z3_api.h:1348
@ Z3_PK_INVALID
Definition z3_api.h:1354
@ Z3_PK_STRING
Definition z3_api.h:1352
@ Z3_RELATION_SORT
Definition z3_api.h:118
@ Z3_BOOL_SORT
Definition z3_api.h:112
@ Z3_TYPE_VAR
Definition z3_api.h:125
@ Z3_ROUNDING_MODE_SORT
Definition z3_api.h:121
@ Z3_UNKNOWN_SORT
Definition z3_api.h:126
@ Z3_BV_SORT
Definition z3_api.h:115
@ Z3_DATATYPE_SORT
Definition z3_api.h:117
@ Z3_INT_SORT
Definition z3_api.h:113
@ Z3_FINITE_DOMAIN_SORT
Definition z3_api.h:119
@ Z3_RE_SORT
Definition z3_api.h:123
@ Z3_UNINTERPRETED_SORT
Definition z3_api.h:111
@ Z3_FLOATING_POINT_SORT
Definition z3_api.h:120
@ Z3_ARRAY_SORT
Definition z3_api.h:116
@ Z3_CHAR_SORT
Definition z3_api.h:124
@ Z3_REAL_SORT
Definition z3_api.h:114
@ Z3_SEQ_SORT
Definition z3_api.h:122
@ Z3_L_TRUE
Definition z3_api.h:61
@ Z3_L_FALSE
Definition z3_api.h:59
@ Z3_L_UNDEF
Definition z3_api.h:60
@ Z3_PARAMETER_INT
Definition z3_api.h:95
@ Z3_PARAMETER_FUNC_DECL
Definition z3_api.h:101
@ Z3_PARAMETER_INTERNAL
Definition z3_api.h:102
@ Z3_PARAMETER_ZSTRING
Definition z3_api.h:103
@ Z3_PARAMETER_SORT
Definition z3_api.h:99
@ Z3_PARAMETER_RATIONAL
Definition z3_api.h:97
@ Z3_PARAMETER_AST
Definition z3_api.h:100
@ Z3_PARAMETER_DOUBLE
Definition z3_api.h:96
@ Z3_PARAMETER_SYMBOL
Definition z3_api.h:98
@ Z3_STRING_SYMBOL
Definition z3_api.h:74
@ Z3_INT_SYMBOL
Definition z3_api.h:73
@ Z3_INTERNAL_FATAL
Definition z3_api.h:1399
@ Z3_DEC_REF_ERROR
Definition z3_api.h:1401
@ Z3_INVALID_USAGE
Definition z3_api.h:1400
@ Z3_INVALID_PATTERN
Definition z3_api.h:1396
@ Z3_INVALID_ARG
Definition z3_api.h:1393
@ Z3_OK
Definition z3_api.h:1390
@ Z3_IOB
Definition z3_api.h:1392
@ Z3_FILE_ACCESS_ERROR
Definition z3_api.h:1398
@ Z3_PARSER_ERROR
Definition z3_api.h:1394
@ Z3_EXCEPTION
Definition z3_api.h:1402
@ Z3_SORT_ERROR
Definition z3_api.h:1391
@ Z3_MEMOUT_FAIL
Definition z3_api.h:1397
@ Z3_NO_PARSER
Definition z3_api.h:1395