mirror of
https://github.com/Z3Prover/z3
synced 2026-02-19 15:04:42 +00:00
fix #8045
This commit is contained in:
parent
7151c5ac6e
commit
d0add7e3d8
1 changed files with 3 additions and 1 deletions
|
|
@ -3233,7 +3233,9 @@ namespace smt {
|
|||
return true;
|
||||
if (!is_app(a))
|
||||
return false;
|
||||
if (m.is_true(a) || m.is_false(a))
|
||||
if (m.is_false(a))
|
||||
return false;
|
||||
if (m.is_true(a))
|
||||
return true;
|
||||
if (is_app(a) && to_app(a)->get_family_id() == m.get_basic_family_id())
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue