Skip to content

Commit

Permalink
build issues
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Dec 11, 2022
1 parent cb86031 commit 039de6a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/ast/simplifiers/extract_eqs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace euf {
public:
basic_extract_eq(ast_manager& m) : m(m) {}

virtual void set_allow_booleans(bool f) {
void set_allow_booleans(bool f) override {
m_allow_bool = f;
}

Expand Down Expand Up @@ -74,7 +74,7 @@ namespace euf {
eqs.push_back(dependent_eq(e.fml(), to_app(x), expr_ref(m.mk_false(), m), d));
}

void updt_params(params_ref const& p) {
void updt_params(params_ref const& p) override {
tactic_params tp(p);
m_ite_solver = p.get_bool("ite_solver", tp.solve_eqs_ite_solver());
}
Expand Down Expand Up @@ -263,7 +263,7 @@ namespace euf {
}


void updt_params(params_ref const& p) {
void updt_params(params_ref const& p) override {
tactic_params tp(p);
m_enabled = p.get_bool("theory_solver", tp.solve_eqs_ite_solver());
}
Expand Down
2 changes: 1 addition & 1 deletion src/ast/simplifiers/model_reconstruction_trail.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class model_reconstruction_trail {
entry(ast_manager& m, func_decl* h) : m_decl(h, m), m_def(m), m_dep(m) {}

entry(ast_manager& m, func_decl* f, expr* def, expr_dependency* dep, vector<dependent_expr> const& rem) :
m_decl(f, m), m_def(def, m), m_removed(rem), m_dep(dep, m) {}
m_removed(rem), m_decl(f, m), m_def(def, m), m_dep(dep, m) {}

bool is_loose() const { return !m_removed.empty(); }

Expand Down

0 comments on commit 039de6a

Please sign in to comment.