mirror of
https://github.com/Z3Prover/z3
synced 2026-04-26 13:53:33 +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;
|
return true;
|
||||||
if (!is_app(a))
|
if (!is_app(a))
|
||||||
return false;
|
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;
|
return true;
|
||||||
if (is_app(a) && to_app(a)->get_family_id() == m.get_basic_family_id())
|
if (is_app(a) && to_app(a)->get_family_id() == m.get_basic_family_id())
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue