summaryrefslogtreecommitdiff
path: root/src/smt/preprocess_proof_generator.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-09-02 12:02:46 -0500
committerGitHub <noreply@github.com>2021-09-02 17:02:46 +0000
commit66b67160df9ce4974039a1c137e84c859fad5237 (patch)
tree4c435a6cf616eb61a82ac6831d222fc8bfb01bd6 /src/smt/preprocess_proof_generator.cpp
parent2d09af0b8789fd5e2a06032f93f85d0c9265a627 (diff)
Implement lazy proof checking modes (#7106)
This implements several variants of lazy proof checking in the core proof checker. Note this extends the ProofNode class with an additional Boolean d_provenChecked indicating whether the d_proven field was checked by the underlying proof checker. This PR updates the default proof checking mode to lazy. The previous default can now be enabled by --proof-check=eager-simple.
Diffstat (limited to 'src/smt/preprocess_proof_generator.cpp')
-rw-r--r--src/smt/preprocess_proof_generator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smt/preprocess_proof_generator.cpp b/src/smt/preprocess_proof_generator.cpp
index 1eea6286b..1e322ccd3 100644
--- a/src/smt/preprocess_proof_generator.cpp
+++ b/src/smt/preprocess_proof_generator.cpp
@@ -256,7 +256,7 @@ std::string PreprocessProofGenerator::identify() const { return d_name; }
void PreprocessProofGenerator::checkEagerPedantic(PfRule r)
{
- if (options::proofEagerChecking())
+ if (options::proofCheck() == options::ProofCheckMode::EAGER)
{
// catch a pedantic failure now, which otherwise would not be
// triggered since we are doing lazy proof generation
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback