summaryrefslogtreecommitdiff
path: root/src/theory/uf
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-10-25 15:08:28 -0500
committerGitHub <noreply@github.com>2021-10-25 15:08:28 -0500
commitd7ac0a4acba9254b082effec1f7297033bd5c487 (patch)
tree1a01b26f96983129b9de29367687a36b103921db /src/theory/uf
parent50da62ab1ebd71d619e4ada901c35009396f772e (diff)
Fix more missing uses of CDProof::isSame (#7491)
Fixes cvc5/cvc5-projects#306.
Diffstat (limited to 'src/theory/uf')
-rw-r--r--src/theory/uf/eq_proof.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/uf/eq_proof.cpp b/src/theory/uf/eq_proof.cpp
index 06750c7ed..45a00a620 100644
--- a/src/theory/uf/eq_proof.cpp
+++ b/src/theory/uf/eq_proof.cpp
@@ -1432,7 +1432,7 @@ Node EqProof::addToProof(CDProof* p,
// we obtained for example (= (f (f t1 t2 t3) t4) (f (f t5 t6) t7)), which is
// flattened into the original conclusion (= (f t1 t2 t3 t4) (f t5 t6 t7)) via
// rewriting
- if (conclusion != d_node)
+ if (!CDProof::isSame(conclusion, d_node))
{
Trace("eqproof-conv") << "EqProof::addToProof: add "
<< PfRule::MACRO_SR_PRED_TRANSFORM
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback