mirror of
https://github.com/Z3Prover/z3
synced 2025-11-14 10:01:16 +00:00
n/a
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3b78bdc8e5
commit
371880da04
3 changed files with 45 additions and 55 deletions
|
|
@ -341,10 +341,7 @@ namespace smt {
|
|||
}
|
||||
|
||||
void context::display_parent_eqs(std::ostream & out, enode * n) const {
|
||||
enode_vector::iterator it = n->begin_parents();
|
||||
enode_vector::iterator end = n->end_parents();
|
||||
for (; it != end; ++it) {
|
||||
enode * parent = *it;
|
||||
for (enode* parent : n->get_parents()) {
|
||||
if (parent->is_eq())
|
||||
display_eq_detail(out, parent);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue