summaryrefslogtreecommitdiff
path: root/src/proof/proof_node_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/proof/proof_node_manager.h')
-rw-r--r--src/proof/proof_node_manager.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/proof/proof_node_manager.h b/src/proof/proof_node_manager.h
index 533f6d173..5926a5f2e 100644
--- a/src/proof/proof_node_manager.h
+++ b/src/proof/proof_node_manager.h
@@ -27,6 +27,7 @@ namespace cvc5 {
class ProofChecker;
class ProofNode;
+class Options;
namespace theory {
class Rewriter;
@@ -58,7 +59,9 @@ class Rewriter;
class ProofNodeManager
{
public:
- ProofNodeManager(theory::Rewriter* rr, ProofChecker* pc = nullptr);
+ ProofNodeManager(const Options& opts,
+ theory::Rewriter* rr,
+ ProofChecker* pc = nullptr);
~ProofNodeManager() {}
/**
* This constructs a ProofNode with the given arguments. The expected
@@ -188,6 +191,8 @@ class ProofNodeManager
static ProofNode* cancelDoubleSymm(ProofNode* pn);
private:
+ /** Reference to the options */
+ const Options& d_opts;
/** The rewriter */
theory::Rewriter* d_rewriter;
/** The (optional) proof checker */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback