mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
internalize only terms not atoms
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
cb8c6ffafc
commit
648568489c
1 changed files with 1 additions and 1 deletions
|
@ -340,7 +340,7 @@ namespace smt {
|
|||
void context::ensure_internalized(expr* e) {
|
||||
if (!e_internalized(e))
|
||||
internalize(e, false);
|
||||
if (is_app(e))
|
||||
if (is_app(e) && !m.is_bool(e))
|
||||
internalize_term(to_app(e));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue