mirror of
https://github.com/Z3Prover/z3
synced 2025-06-22 05:43:39 +00:00
handle case input format
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8a9837a8b5
commit
bd53fa801e
4 changed files with 59 additions and 21 deletions
|
@ -1010,9 +1010,9 @@ namespace smt {
|
|||
void restore_theory_vars(enode * r2, enode * r1);
|
||||
|
||||
void push_eq(enode * lhs, enode * rhs, eq_justification const & js) {
|
||||
SASSERT(lhs != rhs);
|
||||
SASSERT(lhs->get_root() != rhs->get_root());
|
||||
m_eq_propagation_queue.push_back(new_eq(lhs, rhs, js));
|
||||
if (lhs->get_root() != rhs->get_root()) {
|
||||
m_eq_propagation_queue.push_back(new_eq(lhs, rhs, js));
|
||||
}
|
||||
}
|
||||
|
||||
void push_new_congruence(enode * n1, enode * n2, bool used_commutativity) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue