3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-06 07:15:47 +00:00

if you are really reading this commit message, you must be a programmer who has no life.

This commit is contained in:
Nikolaj Bjorner 2021-11-18 10:10:50 -08:00
parent a5fdf6ba8a
commit de424713e4
6 changed files with 33 additions and 16 deletions

View file

@ -77,6 +77,9 @@ namespace polysat {
if (!c.is_currently_false(s) && c.bvalue(s) != l_false)
return false;
if (c.bvalue(s) == l_true)
return false;
// avoid loops
if (core.contains(~c))
return false;