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

address compiler warnings, and user question #6544

This commit is contained in:
Nikolaj Bjorner 2023-01-19 19:02:43 -08:00
parent 523a3f34b0
commit d11e5c8ca6
16 changed files with 11 additions and 57 deletions

View file

@ -2165,7 +2165,6 @@ namespace fm {
subsume();
var_vector candidates;
sort_candidates(candidates);
unsigned eliminated = 0;
unsigned num = candidates.size();
for (unsigned i = 0; i < num; i++) {
@ -2173,8 +2172,9 @@ namespace fm {
if (m_counter > m_fm_limit)
break;
m_counter++;
if (try_eliminate(candidates[i]))
eliminated++;
if (try_eliminate(candidates[i])) {
}
if (m_inconsistent) {
m_new_fmls.reset();
m_new_fmls.push_back(m.mk_false());