From: Guy Date: Tue, 26 Jul 2016 00:24:39 +0000 (-0700) Subject: Bug fix X-Git-Tag: cvc5-1.0.0~6040^2~31 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cb835bd526296d97f8ceb001569493723a59f86b;p=cvc5.git Bug fix --- diff --git a/src/proof/theory_proof.cpp b/src/proof/theory_proof.cpp index 9753844a1..eae8a68df 100644 --- a/src/proof/theory_proof.cpp +++ b/src/proof/theory_proof.cpp @@ -1080,7 +1080,7 @@ void LFSCBooleanProof::printOwnedTerm(Expr term, std::ostream& os, const ProofLe } // The let map should already have the current expression. - ProofLetMap::const_iterator it = map.find(term); + ProofLetMap::const_iterator it = map.find(currentExpression.toExpr()); if (it != map.end()) { unsigned id = it->second.id; unsigned count = it->second.count;