File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1531,7 +1531,6 @@ namespace smtfd {
1531
1531
unsigned_vector m_toggles_lim;
1532
1532
model_ref m_model;
1533
1533
std::string m_reason_unknown;
1534
- unsigned m_max_lemmas;
1535
1534
stats m_stats;
1536
1535
unsigned m_max_conflicts;
1537
1536
obj_hashtable<quantifier> m_enforced_quantifier;
@@ -1644,7 +1643,7 @@ namespace smtfd {
1644
1643
expr_ref_vector terms (core);
1645
1644
terms.append (m_axioms);
1646
1645
1647
- for (unsigned round = 0 ; !m_context.at_max () && m_context.add_theory_axioms (terms, round ); ++round );
1646
+ for (unsigned round = 0 ; !m_context.at_max () && m_context.add_theory_axioms (terms, round ); ++round ) {}
1648
1647
1649
1648
TRACE (" smtfd" , m_context.display (tout););
1650
1649
for (expr* f : m_context) {
Original file line number Diff line number Diff line change @@ -1776,6 +1776,7 @@ void solve_rational() {
1776
1776
solver.find_maximal_solution ();
1777
1777
lp_assert (solver.get_status () == lp_status::OPTIMAL);
1778
1778
for (const auto & it : expected_sol) {
1779
+ (void )it;
1779
1780
lp_assert (it.second == solver.get_column_value_by_name (it.first ));
1780
1781
}
1781
1782
}
You can’t perform that action at this time.
0 commit comments