summaryrefslogtreecommitdiff
path: root/src/preprocessing/preprocessing_pass_context.cpp
diff options
context:
space:
mode:
authorAina Niemetz <aina.niemetz@gmail.com>2018-07-02 16:51:03 -0700
committerGitHub <noreply@github.com>2018-07-02 16:51:03 -0700
commitbe08eae24750b006d8a4b1e27e0e242553f64735 (patch)
treef467d044a1166055fd10d91f2d21239c215ff869 /src/preprocessing/preprocessing_pass_context.cpp
parentafd4d46b2559c9bb3427678ca287c33d3923ef7f (diff)
Refactor ApplySubsts preprocessing pass. (#2120)
Diffstat (limited to 'src/preprocessing/preprocessing_pass_context.cpp')
-rw-r--r--src/preprocessing/preprocessing_pass_context.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/preprocessing/preprocessing_pass_context.cpp b/src/preprocessing/preprocessing_pass_context.cpp
index d44f24e13..1f3d245d7 100644
--- a/src/preprocessing/preprocessing_pass_context.cpp
+++ b/src/preprocessing/preprocessing_pass_context.cpp
@@ -2,7 +2,7 @@
/*! \file preprocessing_pass_context.cpp
** \verbatim
** Top contributors (to current version):
- ** Justin Xu, Mathias Preiner
+ ** Justin Xu, Mathias Preiner, Aina Niemetz
** This file is part of the CVC4 project.
** Copyright (c) 2009-2018 by the authors listed in the file AUTHORS
** in the top-level source directory) and their institutional affiliations.
@@ -19,8 +19,11 @@
namespace CVC4 {
namespace preprocessing {
-PreprocessingPassContext::PreprocessingPassContext(SmtEngine* smt)
- : d_smt(smt) {}
+PreprocessingPassContext::PreprocessingPassContext(
+ SmtEngine* smt, ResourceManager* resourceManager)
+ : d_smt(smt), d_resourceManager(resourceManager)
+{
+}
void PreprocessingPassContext::widenLogic(theory::TheoryId id)
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback