summaryrefslogtreecommitdiff
path: root/src/proof/conv_proof_generator.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-06-30 07:52:35 -0500
committerGitHub <noreply@github.com>2021-06-30 09:52:35 -0300
commita633cd03e1fe118a0e5a7b50db25395b387173a1 (patch)
tree4e2aec1a30a0fc5bc90b6731bf0b56d9ed8b181d /src/proof/conv_proof_generator.cpp
parent14944f1115fa2ad20afa3873626c2804731aff71 (diff)
Fix pre vs. post-rewrite in proofs for theory preprocessor (#6801)
This changes an annotation of a step of rewriting from "post" to "pre" in the theory preprocessor. Fixes #6754.
Diffstat (limited to 'src/proof/conv_proof_generator.cpp')
-rw-r--r--src/proof/conv_proof_generator.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proof/conv_proof_generator.cpp b/src/proof/conv_proof_generator.cpp
index 3635f3dea..1c4e2de5d 100644
--- a/src/proof/conv_proof_generator.cpp
+++ b/src/proof/conv_proof_generator.cpp
@@ -213,7 +213,7 @@ std::shared_ptr<ProofNode> TConvProofGenerator::getProofFor(Node f)
if (debugTraceEnabled)
{
- Trace("tconv-pf-gen-debug") << "Printing rewrite steps..." << std::endl;
+ Trace("tconv-pf-gen-debug") << "Rewrite steps:" << std::endl;
for (size_t r = 0; r < 2; r++)
{
const NodeNodeMap& rm = r == 0 ? d_preRewriteMap : d_postRewriteMap;
@@ -233,7 +233,7 @@ std::shared_ptr<ProofNode> TConvProofGenerator::getProofFor(Node f)
std::shared_ptr<ProofNode> pfn = lpf.getProofFor(f);
Trace("tconv-pf-gen") << "... success" << std::endl;
Assert(pfn != nullptr);
- Trace("tconv-pf-gen-debug") << "... proof is " << *pfn << std::endl;
+ Trace("tconv-pf-gen-debug-pf") << "... proof is " << *pfn << std::endl;
return pfn;
}
@@ -251,7 +251,7 @@ std::shared_ptr<ProofNode> TConvProofGenerator::getProofForRewriting(Node n)
}
std::shared_ptr<ProofNode> pfn = lpf.getProofFor(conc);
Assert(pfn != nullptr);
- Trace("tconv-pf-gen-debug") << "... proof is " << *pfn << std::endl;
+ Trace("tconv-pf-gen-debug-pf") << "... proof is " << *pfn << std::endl;
return pfn;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback