summaryrefslogtreecommitdiff
path: root/src/theory/arith/arith_preprocess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/arith_preprocess.cpp')
-rw-r--r--src/theory/arith/arith_preprocess.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/theory/arith/arith_preprocess.cpp b/src/theory/arith/arith_preprocess.cpp
index 577407c07..142f02eab 100644
--- a/src/theory/arith/arith_preprocess.cpp
+++ b/src/theory/arith/arith_preprocess.cpp
@@ -25,7 +25,10 @@ ArithPreprocess::ArithPreprocess(ArithState& state,
: d_im(im), d_opElim(pnm, info), d_reduced(state.getUserContext())
{
}
-TrustNode ArithPreprocess::eliminate(TNode n) { return d_opElim.eliminate(n); }
+TrustNode ArithPreprocess::eliminate(TNode n, bool partialOnly)
+{
+ return d_opElim.eliminate(n, partialOnly);
+}
bool ArithPreprocess::reduceAssertion(TNode atom)
{
context::CDHashMap<Node, bool, NodeHashFunction>::const_iterator it =
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback