mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
enable the saturation rules
This commit is contained in:
parent
7925ef731f
commit
f904c08116
1 changed files with 4 additions and 4 deletions
|
@ -70,13 +70,13 @@ namespace polysat {
|
|||
void saturation::resolve(pvar v, inequality const& i) {
|
||||
if (c.size(v) != i.lhs().power_of_2())
|
||||
return;
|
||||
if (false && !c.inconsistent())
|
||||
if (!c.inconsistent())
|
||||
try_ugt_x(v, i);
|
||||
if (false && !c.inconsistent())
|
||||
if (!c.inconsistent())
|
||||
try_ugt_y(v, i);
|
||||
if (false && !c.inconsistent())
|
||||
if (!c.inconsistent())
|
||||
try_ugt_z(v, i);
|
||||
if (false && !c.inconsistent())
|
||||
if (!c.inconsistent())
|
||||
try_eq_resolve(v, i);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue