summaryrefslogtreecommitdiff
path: root/src/theory/arith/unate_propagator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/unate_propagator.cpp')
-rw-r--r--src/theory/arith/unate_propagator.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arith/unate_propagator.cpp b/src/theory/arith/unate_propagator.cpp
index 069f4f0f3..9c7946712 100644
--- a/src/theory/arith/unate_propagator.cpp
+++ b/src/theory/arith/unate_propagator.cpp
@@ -30,8 +30,8 @@ using namespace CVC4::kind;
using namespace std;
-ArithUnatePropagator::ArithUnatePropagator(context::Context* cxt, OutputChannel& out) :
- d_arithOut(out), d_orderedListMap()
+ArithUnatePropagator::ArithUnatePropagator(context::Context* cxt) :
+ d_orderedListMap()
{ }
bool ArithUnatePropagator::leftIsSetup(TNode left){
@@ -393,5 +393,5 @@ void ArithUnatePropagator::addImplication(TNode a, TNode b){
Debug("arith-propagate") << "ArithUnatePropagator::addImplication";
Debug("arith-propagate") << "(" << a << ", " << b <<")" << endl;
- d_arithOut.lemma(imp);
+ addLemma(imp);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback