summaryrefslogtreecommitdiff
path: root/src/theory/arith/unate_propagator.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2011-04-04 20:18:11 +0000
committerTim King <taking@cs.nyu.edu>2011-04-04 20:18:11 +0000
commit2935af06e3fae46418c10450df9e02465f0a8038 (patch)
tree39c1fbd55347ab44e665bfaff97e151a2c3e00a7 /src/theory/arith/unate_propagator.cpp
parent97f2f155ad238f48b35050088c3cf60cc326b1f3 (diff)
Reverts previous commit r1636.
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 9c7946712..069f4f0f3 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) :
- d_orderedListMap()
+ArithUnatePropagator::ArithUnatePropagator(context::Context* cxt, OutputChannel& out) :
+ d_arithOut(out), 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;
- addLemma(imp);
+ d_arithOut.lemma(imp);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback