3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

lower/upper case

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-08-04 17:36:42 -07:00
parent 5c6c601490
commit 2da3593f50
2 changed files with 3 additions and 2 deletions

View file

@ -97,7 +97,6 @@ namespace polysat {
lbool fixplex<Ext>::make_feasible() {
++m_stats.m_num_checks;
m_left_basis.reset();
m_unsat_core.reset();
unsigned num_iterations = 0;
unsigned num_repeated = 0;
var_t v = null_var;
@ -1220,6 +1219,8 @@ namespace polysat {
}
for (unsigned i = 0; i < m_vars.size(); ++i) {
SASSERT(is_base(i) || in_bounds(i));
if (!is_base(i) && !in_bounds(i))
return false;
}
return true;
}