From 71d72df0437607723256bbd7b4f28cd6c89fe40f Mon Sep 17 00:00:00 2001 From: Andrew Reynolds Date: Mon, 22 Feb 2021 16:07:16 -0600 Subject: (proof-new) Change proof-new option to proof (#5955) Also moves several proof-specific options to proof_options. --- src/expr/lazy_proof_chain.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/expr/lazy_proof_chain.cpp') diff --git a/src/expr/lazy_proof_chain.cpp b/src/expr/lazy_proof_chain.cpp index 665e68d28..2edad1647 100644 --- a/src/expr/lazy_proof_chain.cpp +++ b/src/expr/lazy_proof_chain.cpp @@ -17,7 +17,7 @@ #include "expr/proof.h" #include "expr/proof_ensure_closed.h" #include "expr/proof_node_algorithm.h" -#include "options/smt_options.h" +#include "options/proof_options.h" namespace CVC4 { @@ -261,8 +261,8 @@ void LazyCDProofChain::addLazyStep(Node expected, << " set to generator " << pg->identify() << "\n"; // note this will rewrite the generator for expected, if any d_gens.insert(expected, pg); - // check if chain is closed if options::proofNewEagerChecking() is on - if (options::proofNewEagerChecking()) + // check if chain is closed if options::proofEagerChecking() is on + if (options::proofEagerChecking()) { Trace("lazy-cdproofchain") << "LazyCDProofChain::addLazyStep: Checking closed proof...\n"; -- cgit v1.2.3