mirror of
https://github.com/Z3Prover/z3
synced 2025-07-23 12:48:53 +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) {
|
void saturation::resolve(pvar v, inequality const& i) {
|
||||||
if (c.size(v) != i.lhs().power_of_2())
|
if (c.size(v) != i.lhs().power_of_2())
|
||||||
return;
|
return;
|
||||||
if (false && !c.inconsistent())
|
if (!c.inconsistent())
|
||||||
try_ugt_x(v, i);
|
try_ugt_x(v, i);
|
||||||
if (false && !c.inconsistent())
|
if (!c.inconsistent())
|
||||||
try_ugt_y(v, i);
|
try_ugt_y(v, i);
|
||||||
if (false && !c.inconsistent())
|
if (!c.inconsistent())
|
||||||
try_ugt_z(v, i);
|
try_ugt_z(v, i);
|
||||||
if (false && !c.inconsistent())
|
if (!c.inconsistent())
|
||||||
try_eq_resolve(v, i);
|
try_eq_resolve(v, i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue