3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-10-20 16:39:43 -07:00
parent 354bc50400
commit 6d6752b2aa
4 changed files with 15 additions and 6 deletions

View file

@ -24,7 +24,7 @@ namespace q {
expr_ref_vector theory_checker::clause(app* jst) {
expr_ref_vector result(m);
for (expr* arg : *jst)
if (!is_bind(arg))
if (m.is_bool(arg))
result.push_back(mk_not(m, arg));
return result;
}