summaryrefslogtreecommitdiff
path: root/src/smt/proof_post_processor.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-10-20 19:12:07 -0500
committerGitHub <noreply@github.com>2020-10-20 19:12:07 -0500
commit6940f336d9c63c4844438d6921a38f2c561a4195 (patch)
tree57ce7cf87d4e5540e9c138606bea54482e51ff38 /src/smt/proof_post_processor.cpp
parent020565a54621169437a237b0d14478f0c44936a0 (diff)
(proof-new) Fixes for proofs in rewriter (#5307)
This PR fixes proofs in the rewriter so that we use attributes for marking whether a node has been rewritten with proofs instead of consulting the provided TConvProofGenerator for hasRewriteStep. This additionally marks TRUST_REWRITE steps if a rewriter happens to be nondeterministic (e.g. quantifiers). It furthermore decouples rewriteWithProof from reconstruction for theory rewrite steps. The proof postprocessor is additionally updated so that extended equality REWRITE steps are converted to THEORY_REWRITE steps with identifier RW_REWRITE_EQ_EXT for consistency, since eliminating REWRITE should result in THEORY_REWRITE only. This required generalizing the argument to THEORY_REWRITE to be a MethodId instead of a Boolean.
Diffstat (limited to 'src/smt/proof_post_processor.cpp')
-rw-r--r--src/smt/proof_post_processor.cpp48
1 files changed, 32 insertions, 16 deletions
diff --git a/src/smt/proof_post_processor.cpp b/src/smt/proof_post_processor.cpp
index a7723d265..40e61964c 100644
--- a/src/smt/proof_post_processor.cpp
+++ b/src/smt/proof_post_processor.cpp
@@ -21,6 +21,7 @@
#include "smt/smt_statistics_registry.h"
#include "theory/builtin/proof_checker.h"
#include "theory/rewriter.h"
+#include "theory/theory.h"
using namespace CVC4::kind;
using namespace CVC4::theory;
@@ -543,14 +544,11 @@ Node ProofPostprocessCallback::expandMacros(PfRule id,
Node eq = args[0].eqNode(ret);
if (idr == MethodId::RW_REWRITE || idr == MethodId::RW_REWRITE_EQ_EXT)
{
- // automatically expand THEORY_REWRITE as well here if set
- bool elimTR =
- (d_elimRules.find(PfRule::THEORY_REWRITE) != d_elimRules.end());
// rewrites from theory::Rewriter
bool isExtEq = (idr == MethodId::RW_REWRITE_EQ_EXT);
// use rewrite with proof interface
Rewriter* rr = d_smte->getRewriter();
- TrustNode trn = rr->rewriteWithProof(args[0], elimTR, isExtEq);
+ TrustNode trn = rr->rewriteWithProof(args[0], isExtEq);
std::shared_ptr<ProofNode> pfn = trn.toProofNode();
if (pfn == nullptr)
{
@@ -559,10 +557,17 @@ Node ProofPostprocessCallback::expandMacros(PfRule id,
// did not have a proof of rewriting, probably isExtEq is true
if (isExtEq)
{
- // don't update
- return Node::null();
+ // update to THEORY_REWRITE with idr
+ Assert(args.size() >= 1);
+ TheoryId theoryId = Theory::theoryOf(args[0].getType());
+ Node tid = builtin::BuiltinProofRuleChecker::mkTheoryIdNode(theoryId);
+ cdp->addStep(eq, PfRule::THEORY_REWRITE, {}, {eq, tid, args[1]});
+ }
+ else
+ {
+ // this should never be applied
+ cdp->addStep(eq, PfRule::TRUST_REWRITE, {}, {eq});
}
- cdp->addStep(eq, PfRule::TRUST_REWRITE, {}, {eq});
}
else
{
@@ -590,6 +595,24 @@ Node ProofPostprocessCallback::expandMacros(PfRule id,
}
return eq;
}
+ else if (id == PfRule::THEORY_REWRITE)
+ {
+ Assert(!args.empty());
+ Node eq = args[0];
+ Assert(eq.getKind() == EQUAL);
+ // try to replay theory rewrite
+ // first, check that maybe its just an evaluation step
+ ProofChecker* pc = d_pnm->getChecker();
+ Node ceval =
+ pc->checkDebug(PfRule::EVALUATE, {}, {eq[0]}, eq, "smt-proof-pp-debug");
+ if (!ceval.isNull() && ceval == eq)
+ {
+ cdp->addStep(eq, PfRule::EVALUATE, {}, {eq[0]});
+ return eq;
+ }
+ // otherwise no update
+ Trace("final-pf-hole") << "hole: " << id << " : " << eq << std::endl;
+ }
// TRUST, PREPROCESS, THEORY_LEMMA, THEORY_PREPROCESS?
@@ -712,14 +735,6 @@ bool ProofPostprocessFinalCallback::shouldUpdate(std::shared_ptr<ProofNode> pn,
bool& continueUpdate)
{
PfRule r = pn->getRule();
- if (Trace.isOn("final-pf-hole"))
- {
- if (r == PfRule::THEORY_REWRITE)
- {
- Trace("final-pf-hole") << "hole: " << r << " : " << pn->getResult()
- << std::endl;
- }
- }
// if not doing eager pedantic checking, fail if below threshold
if (!options::proofNewPedanticEager())
{
@@ -758,7 +773,8 @@ ProofPostproccess::ProofPostproccess(ProofNodeManager* pnm,
ProofGenerator* pppg)
: d_pnm(pnm),
d_cb(pnm, smte, pppg),
- d_updater(d_pnm, d_cb),
+ // the update merges subproofs
+ d_updater(d_pnm, d_cb, true),
d_finalCb(pnm),
d_finalizer(d_pnm, d_finalCb)
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback