summaryrefslogtreecommitdiff
path: root/src/theory/arith/nl/transcendental_solver.cpp
diff options
context:
space:
mode:
authorGereon Kremer <gereon.kremer@cs.rwth-aachen.de>2020-09-02 15:48:12 +0200
committerGitHub <noreply@github.com>2020-09-02 08:48:12 -0500
commit02e682821028bc704c57a762dadeb6f82bb70ebf (patch)
tree4eb20c4d3e6b06eaee58b808909e603da013b554 /src/theory/arith/nl/transcendental_solver.cpp
parent78917e16f6521b0e8a074f3649fc6adf37614617 (diff)
Add ArithLemma and arith::InferenceManager (#4960)
This PR adds a new ArithLemma that is essentiall NlLemma, but derived from the new theory::Lemma and meant to be used all across the arithmetic theory. Also, based on theory::InferenceManagerBuffered this PR adds arith::InferenceManager that shall become the sole interface between the arithmetic theory and the OutputChannel.
Diffstat (limited to 'src/theory/arith/nl/transcendental_solver.cpp')
-rw-r--r--src/theory/arith/nl/transcendental_solver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/nl/transcendental_solver.cpp b/src/theory/arith/nl/transcendental_solver.cpp
index 321818b94..b2ef16459 100644
--- a/src/theory/arith/nl/transcendental_solver.cpp
+++ b/src/theory/arith/nl/transcendental_solver.cpp
@@ -212,8 +212,8 @@ void TranscendentalSolver::initLastCall(const std::vector<Node>& assertions,
// note we must do preprocess on this lemma
Trace("nl-ext-lemma") << "NonlinearExtension::Lemma : purify : " << lem
<< std::endl;
- NlLemma nlem(lem, Inference::T_PURIFY_ARG);
- nlem.d_preprocess = true;
+ NlLemma nlem(
+ lem, LemmaProperty::PREPROCESS, nullptr, Inference::T_PURIFY_ARG);
lems.emplace_back(nlem);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback