mirror of
https://github.com/Z3Prover/z3
synced 2026-05-17 15:39:27 +00:00
Missing internalization
This commit is contained in:
parent
495921ca17
commit
910c68cd42
2 changed files with 9 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue