mirror of
https://github.com/Z3Prover/z3
synced 2025-04-09 02:41:52 +00:00
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
#include "z3.h"
|
|
#include "stdio.h"
|
|
|
|
void tst_api_bug() {
|
|
unsigned vmajor, vminor, vbuild, vrevision;
|
|
|
|
Z3_get_version(&vmajor, &vminor, &vbuild, &vrevision);
|
|
|
|
printf("Using Z3 Version %u.%u (build %u, revision %u)\n", vmajor, vminor, vbuild, vrevision);
|
|
|
|
|
|
Z3_config cfg = Z3_mk_config();
|
|
Z3_set_param_value(cfg, "MODEL", "true");
|
|
Z3_context ctx = Z3_mk_context(cfg);
|
|
|
|
Z3_sort is = Z3_mk_int_sort(ctx);
|
|
Z3_sort ss = Z3_mk_set_sort(ctx, is);
|
|
Z3_ast e = Z3_mk_empty_set(ctx, is);
|
|
// { 42 }
|
|
Z3_ast fortytwo = Z3_mk_set_add(ctx, e, Z3_mk_int(ctx, 42, is));
|
|
// { 42, 43 }
|
|
Z3_ast fortythree = Z3_mk_set_add(ctx, fortytwo, Z3_mk_int(ctx, 43, is));
|
|
// { 42 } U { 42, 43 }
|
|
|
|
Z3_ast uargs[2] = { fortytwo, fortythree };
|
|
Z3_ast u = Z3_mk_set_union(ctx, 2, uargs);
|
|
|
|
Z3_symbol sym = Z3_mk_string_symbol(ctx, "mySet");
|
|
Z3_ast s = Z3_mk_const(ctx, sym, ss);
|
|
Z3_ast c = Z3_mk_eq(ctx, s, u);
|
|
|
|
Z3_push(ctx);
|
|
Z3_assert_cnstr(ctx, c);
|
|
|
|
Z3_model m;
|
|
printf("result %d\n", Z3_check_and_get_model(ctx, &m));
|
|
|
|
Z3_string ms = Z3_model_to_string(ctx, m);
|
|
printf("model : %s\n", ms);
|
|
}
|
|
|
|
|