3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Fixed gcc compilation bug, add exec flag

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-11 00:42:24 -07:00
parent 8aecd2f71a
commit 6ffaadd498
2 changed files with 1 additions and 1 deletions

View file

@ -641,7 +641,7 @@ namespace datalog {
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));
assert_expr(m.mk_app(q, trace.get(), path.get()));
lbool is_sat = m_solver.check();
if (is_sat == l_undef) {
model_ref md;

0
test_capi/build.sh Normal file → Executable file
View file