Skip to content

Commit

Permalink
na
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Sep 10, 2020
1 parent cfa7c73 commit f4e8205
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/sat/smt/euf_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ namespace euf {
e = m_var2expr[l.var()];
n = m_egraph.find(e);
SASSERT(n);
SASSERT(m.is_bool(n->get_owner()));
SASSERT(m.is_bool(n->get_expr()));
m_egraph.explain_eq<size_t>(m_explain, n, (l.sign() ? mk_false() : mk_true()));
break;
default:
Expand Down
10 changes: 4 additions & 6 deletions src/smt/smt_enode.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,11 @@ namespace smt {

void del_eh(ast_manager & m, bool update_children_parent = true);

app * get_owner() const {
return m_owner;
}
app * get_owner() const { return m_owner; }
app * get_expr() const { return m_owner; }

unsigned get_owner_id() const {
return m_owner->get_id();
}
unsigned get_owner_id() const { return m_owner->get_id(); }
unsigned get_expr_id() const { return m_owner->get_id(); }

func_decl * get_decl() const {
return m_owner->get_decl();
Expand Down

0 comments on commit f4e8205

Please sign in to comment.