mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
address issues raised in #998
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5be3e959ab
commit
e67572ffa6
|
@ -980,10 +980,6 @@ namespace smt {
|
|||
|
||||
void push_eq(enode * lhs, enode * rhs, eq_justification const & js) {
|
||||
SASSERT(lhs != rhs);
|
||||
{
|
||||
seq_util u(get_manager());
|
||||
SASSERT(!u.is_re(lhs->get_owner()));
|
||||
}
|
||||
m_eq_propagation_queue.push_back(new_eq(lhs, rhs, js));
|
||||
}
|
||||
|
||||
|
|
|
@ -3927,8 +3927,6 @@ void theory_seq::new_eq_eh(dependency* deps, enode* n1, enode* n2) {
|
|||
}
|
||||
else if (n1 != n2 && m_util.is_re(n1->get_owner())) {
|
||||
// ignore
|
||||
UNREACHABLE();
|
||||
|
||||
// eautomaton* a1 = get_automaton(n1->get_owner());
|
||||
// eautomaton* a2 = get_automaton(n2->get_owner());
|
||||
// eautomaton* b1 = mk_difference(*a1, *a2);
|
||||
|
|
Loading…
Reference in a new issue