summaryrefslogtreecommitdiff
path: root/src/theory/arith/nl/cad_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/cad_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/cad_solver.cpp')
-rw-r--r--src/theory/arith/nl/cad_solver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/arith/nl/cad_solver.cpp b/src/theory/arith/nl/cad_solver.cpp
index b1f0894fb..ac939c341 100644
--- a/src/theory/arith/nl/cad_solver.cpp
+++ b/src/theory/arith/nl/cad_solver.cpp
@@ -95,7 +95,7 @@ std::vector<NlLemma> CadSolver::checkFull()
{
lems.emplace_back(nm->mkNode(Kind::OR, mis), Inference::CAD_CONFLICT);
}
- Trace("nl-cad") << "UNSAT with MIS: " << lems.back().d_lemma << std::endl;
+ Trace("nl-cad") << "UNSAT with MIS: " << lems.back().d_node << std::endl;
}
return lems;
#else
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback