3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

working on bmc and bug fixes

Signed-off-by: unknown <nbjorner@NBJORNER-X200.redmond.corp.microsoft.com>
This commit is contained in:
unknown 2012-10-11 09:11:56 -07:00
commit 27a5bd5b83
25 changed files with 591 additions and 1963 deletions

View file

@ -700,8 +700,8 @@ namespace datalog {
func_decl_ref q = mk_predicate(m_query_pred);
expr_ref trace(m), path(m);
trace = m.mk_const(symbol("trace"), trace_sort);
path = m.mk_const(symbol("path"), m_path_sort);
assert_expr(m.mk_app(q, trace, path));
path = m.mk_const(symbol("path"),m_path_sort);
assert_expr(m.mk_app(q, trace.get(), path.get()));
lbool is_sat = m_solver.check();
if (is_sat == l_undef) {
model_ref md;