Skip to content

Commit

Permalink
warnings /errors
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Aug 29, 2020
1 parent b9cbb08 commit 79fc3f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/sat/smt/euf_solver.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ namespace euf {
bool extract_pb(std::function<void(unsigned sz, literal const* c, unsigned k)>& card,
std::function<void(unsigned sz, literal const* c, unsigned const* coeffs, unsigned k)>& pb) override;

bool to_formulas(std::function<expr_ref(sat::literal)>& l2e, expr_ref_vector& fmls);
bool to_formulas(std::function<expr_ref(sat::literal)>& l2e, expr_ref_vector& fmls) override;
sat::literal internalize(expr* e, bool sign, bool root) override;
void update_model(model_ref& mdl);

Expand Down
2 changes: 2 additions & 0 deletions src/sat/tactic/goal2sat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ struct goal2sat::imp : public sat::sat_internalizer {
m_true = sat::null_literal;
m_aig = s.get_cut_simplifier();
}

~imp() override {}

void updt_params(params_ref const & p) {
m_ite_extra = p.get_bool("ite_extra", true);
Expand Down

0 comments on commit 79fc3f2

Please sign in to comment.