3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00

disable for now

This commit is contained in:
Jakob Rath 2022-11-23 16:59:26 +01:00
parent 558fd718c0
commit 5c63a67634

View file

@ -71,8 +71,8 @@ namespace polysat {
bool try_resolve_value(pvar v, conflict& core) { bool try_resolve_value(pvar v, conflict& core) {
if (m_poly_sup.perform(v, core)) if (m_poly_sup.perform(v, core))
return true; return true;
if (m_saturate.perform(v, core)) // if (m_saturate.perform(v, core))
return true; // return true;
return false; return false;
} }