3
0
Fork 0
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:
Jakob Rath 2024-05-10 14:59:19 +02:00
parent 7925ef731f
commit f904c08116

View file

@ -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);
}