summaryrefslogtreecommitdiff
path: root/src/smt/preprocessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/preprocessor.h')
-rw-r--r--src/smt/preprocessor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/smt/preprocessor.h b/src/smt/preprocessor.h
index c590b7164..e0ad2cc14 100644
--- a/src/smt/preprocessor.h
+++ b/src/smt/preprocessor.h
@@ -25,6 +25,7 @@
#include "theory/booleans/circuit_propagator.h"
namespace cvc5 {
+class Env;
namespace preprocessing {
class PreprocessingPassContext;
}
@@ -46,7 +47,7 @@ class Preprocessor
{
public:
Preprocessor(SmtEngine& smt,
- context::UserContext* u,
+ Env& env,
AbstractValues& abs,
SmtEngineStatistics& stats);
~Preprocessor();
@@ -94,17 +95,16 @@ class Preprocessor
const Node& n,
std::unordered_map<Node, Node, NodeHashFunction>& cache,
bool expandOnly = false);
-
/**
* Set proof node manager. Enables proofs in this preprocessor.
*/
void setProofGenerator(PreprocessProofGenerator* pppg);
private:
- /** A copy of the current context */
- context::Context* d_context;
/** Reference to the parent SmtEngine */
SmtEngine& d_smt;
+ /** Reference to the env */
+ Env& d_env;
/** Reference to the abstract values utility */
AbstractValues& d_absValues;
/**
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback