From 656004c54655ab15289d9e7666bda2e1c7bada1c Mon Sep 17 00:00:00 2001 From: Andrew Reynolds Date: Tue, 20 Oct 2020 15:20:35 -0500 Subject: (proof-new) Update add lazy step interface in LazyCDProof (#5299) Ensuring closed proofs should not be enabled by default, it is actually not used very often as a whole. Moreover, the "trust id" argument is the most useful argument and hence should come as the 3rd argument. This updates all uses of addLazyStep for the change in interface, also changes term conversion generator which had a similar issue with default arguments. Notice that some calls to addLazyStep were checking closed but without providing a debug string, these I've left alone (they no longer check closed). --- src/theory/theory_engine.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/theory/theory_engine.cpp') diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp index aaa010148..924d045da 100644 --- a/src/theory/theory_engine.cpp +++ b/src/theory/theory_engine.cpp @@ -1462,10 +1462,9 @@ theory::LemmaStatus TheoryEngine::lemma(theory::TrustNode tlemma, { d_lazyProof->addLazyStep(tplemma.getProven(), tplemma.getGenerator(), + PfRule::PREPROCESS_LEMMA, true, - "TheoryEngine::lemma_pp", - false, - PfRule::PREPROCESS_LEMMA); + "TheoryEngine::lemma_pp"); // ---------- from d_lazyProof -------------- from theory preprocess // lemma lemma = lemmap // ------------------------------------------ EQ_RESOLVE -- cgit v1.2.3