mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
address clang warnings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
0c1b68b598
commit
20598e3bd2
|
@ -1531,7 +1531,6 @@ namespace smtfd {
|
|||
unsigned_vector m_toggles_lim;
|
||||
model_ref m_model;
|
||||
std::string m_reason_unknown;
|
||||
unsigned m_max_lemmas;
|
||||
stats m_stats;
|
||||
unsigned m_max_conflicts;
|
||||
obj_hashtable<quantifier> m_enforced_quantifier;
|
||||
|
@ -1644,7 +1643,7 @@ namespace smtfd {
|
|||
expr_ref_vector terms(core);
|
||||
terms.append(m_axioms);
|
||||
|
||||
for (unsigned round = 0; !m_context.at_max() && m_context.add_theory_axioms(terms, round); ++round);
|
||||
for (unsigned round = 0; !m_context.at_max() && m_context.add_theory_axioms(terms, round); ++round) {}
|
||||
|
||||
TRACE("smtfd", m_context.display(tout););
|
||||
for (expr* f : m_context) {
|
||||
|
|
|
@ -1776,6 +1776,7 @@ void solve_rational() {
|
|||
solver.find_maximal_solution();
|
||||
lp_assert(solver.get_status() == lp_status::OPTIMAL);
|
||||
for (const auto & it : expected_sol) {
|
||||
(void)it;
|
||||
lp_assert(it.second == solver.get_column_value_by_name(it.first));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue