3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-05-17 15:39:27 +00:00

Missing internalization

This commit is contained in:
CEisenhofer 2026-03-25 19:52:27 +01:00
parent 495921ca17
commit 910c68cd42
2 changed files with 9 additions and 2 deletions

View file

@ -47,6 +47,13 @@ namespace smt {
mk_var(ctx.get_enode(s));
return true;
}
if (m_util.is_skolem(atom)) {
// char2bit
bool_var bv = ctx.mk_bool_var(atom);
ctx.set_var_theory(bv, get_id());
ctx.mark_as_relevant(bv);
return true;
}
return internalize_term(atom);
}