mirror of
https://github.com/Z3Prover/z3
synced 2025-12-30 15:59:52 +00:00
fix #8045
This commit is contained in:
parent
e4cdbe0035
commit
ec4246463f
1 changed files with 3 additions and 1 deletions
|
|
@ -3226,7 +3226,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