summaryrefslogtreecommitdiff
path: root/src/theory/arith/theory_arith.cpp
diff options
context:
space:
mode:
authorGereon Kremer <gereon.kremer@cs.rwth-aachen.de>2020-09-23 20:05:06 +0200
committerGitHub <noreply@github.com>2020-09-23 20:05:06 +0200
commit770d9ae622ec04bc2fbea8356ce11329ed06fa5b (patch)
tree0c1fe354fa4b1b7514520d265c9012521c00e4ff /src/theory/arith/theory_arith.cpp
parent102b5b2ebeea5c0e4e13583c9f8e8ac8b811e264 (diff)
Make IAND solver use inference manager. (#5126)
This PR moves the iand solver (within the nonlinear extension) to use the new inference manager to send lemmas.
Diffstat (limited to 'src/theory/arith/theory_arith.cpp')
-rw-r--r--src/theory/arith/theory_arith.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/arith/theory_arith.cpp b/src/theory/arith/theory_arith.cpp
index abdf6930a..9324c94af 100644
--- a/src/theory/arith/theory_arith.cpp
+++ b/src/theory/arith/theory_arith.cpp
@@ -83,7 +83,7 @@ void TheoryArith::finishInit()
if (logicInfo.isTheoryEnabled(THEORY_ARITH) && !logicInfo.isLinear())
{
d_nonlinearExtension.reset(
- new nl::NonlinearExtension(*this, d_equalityEngine));
+ new nl::NonlinearExtension(*this, d_astate, d_equalityEngine));
}
// finish initialize internally
d_internal->finishInit();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback