3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

relax level constraint

This commit is contained in:
Jakob Rath 2024-03-20 13:39:16 +01:00
parent 91a9feb5a8
commit ef6b5f82d1

View file

@ -257,7 +257,7 @@ namespace polysat {
for (unsigned i = 0; i < m_fixed.size(); ++i) {
auto const& f = m_fixed[i];
unsigned const f_level = m_fixed_levels[i];
if (f_level >= w_level)
if (f_level > w_level)
continue;
// ??????xxxxxxxyyyyyyzzzz
// 1111 not useful at this point
@ -330,7 +330,7 @@ namespace polysat {
for (unsigned i = 0; i < m_fixed.size(); ++i) {
auto const& f = m_fixed[i];
unsigned const f_level = m_fixed_levels[i];
if (f_level >= w_level)
if (f_level > w_level)
continue;
// ?????????????yyyyyyzzzzz???
// 1111 not useful at this point