3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-14 12:51:48 +00:00

fix build warnings

This commit is contained in:
Nikolaj Bjorner 2024-09-30 10:34:26 -07:00
parent 30b4fe69e4
commit 7da58b9e84
4 changed files with 4 additions and 4 deletions

View file

@ -1012,7 +1012,7 @@ namespace sat {
}
bool solver::propagate_literal(literal l, bool update) {
literal l1, l2;
literal l1;
bool keep;
unsigned curr_level = lvl(l);
@ -4733,7 +4733,7 @@ namespace sat {
num_lits += c.size();
}
}
unsigned total_cls = num_cls + num_ter + num_bin;
unsigned total_cls = num_cls + num_ter + num_bin + num_ext;
double mem = static_cast<double>(memory::get_allocation_size())/static_cast<double>(1024*1024);
out << "(sat-status\n";
out << " :inconsistent " << (m_inconsistent ? "true" : "false") << "\n";