mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
revert unit propagation of equality literals
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
27584d68db
commit
a22fb8a96e
|
@ -70,7 +70,7 @@ literal seq_axioms::mk_literal(expr* _e) {
|
|||
|
||||
void seq_axioms::add_clause(expr_ref_vector const& clause) {
|
||||
expr* a = nullptr, *b = nullptr;
|
||||
if (clause.size() == 1 && m.is_eq(clause[0], a, b)) {
|
||||
if (false && clause.size() == 1 && m.is_eq(clause[0], a, b)) {
|
||||
enode* n1 = th.ensure_enode(a);
|
||||
enode* n2 = th.ensure_enode(b);
|
||||
justification* js =
|
||||
|
|
Loading…
Reference in a new issue