summaryrefslogtreecommitdiff
path: root/src/smt/smt_solver.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-12-16 09:03:45 -0600
committerGitHub <noreply@github.com>2020-12-16 09:03:45 -0600
commit3a3735d58ddac7ecfac80dad35da963901f15f55 (patch)
tree1aa213359a6637f571f22f3db7434bb75a8fc93e /src/smt/smt_solver.cpp
parent5b90fdad09209da667cc281f5425300a4b2bb9c9 (diff)
Move ownership of term formula removal to theory preprocessor (#5670)
This is work towards refactoring ITE removal (more generally, term formula removal) so that it happens at a configurable time, preferably post-CNF conversion. This moves the TermFormulaRemover to the TheoryPreprocessor and changes several interfaces as a consequence of this move. The next step will move the TheoryPreprocessor inside prop::TheoryProxy. There are no behavior changes to solving in this PR. One aspect of CheckModels is simplified.
Diffstat (limited to 'src/smt/smt_solver.cpp')
-rw-r--r--src/smt/smt_solver.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/smt/smt_solver.cpp b/src/smt/smt_solver.cpp
index e53401f79..3e8d0f147 100644
--- a/src/smt/smt_solver.cpp
+++ b/src/smt/smt_solver.cpp
@@ -50,7 +50,6 @@ void SmtSolver::finishInit(const LogicInfo& logicInfo)
d_theoryEngine.reset(new TheoryEngine(d_smt.getContext(),
d_smt.getUserContext(),
d_rm,
- d_pp.getTermFormulaRemover(),
logicInfo,
d_smt.getOutputManager(),
d_pnm));
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback