summaryrefslogtreecommitdiff
path: root/src/theory/arith/theory_arith.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/theory_arith.cpp')
-rw-r--r--src/theory/arith/theory_arith.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/theory_arith.cpp b/src/theory/arith/theory_arith.cpp
index 16fd28649..a48a13720 100644
--- a/src/theory/arith/theory_arith.cpp
+++ b/src/theory/arith/theory_arith.cpp
@@ -1723,7 +1723,7 @@ void TheoryArith::propagate(Effort e) {
if(c->negationHasProof()){
Node conflict = ConstraintValue::explainConflict(c, c->getNegation());
- cout << "tears " << conflict << endl;
+ Message() << "tears " << conflict << endl;
Debug("arith::prop") << "propagate conflict" << conflict << endl;
d_out->conflict(conflict);
return;
@@ -1950,7 +1950,7 @@ bool TheoryArith::entireStateIsConsistent(){
ArithVar var = d_arithvarNodeMap.asArithVar(*i);
if(!d_partialModel.assignmentIsConsistent(var)){
d_partialModel.printModel(var);
- cerr << "Assignment is not consistent for " << var << *i << endl;
+ Warning() << "Assignment is not consistent for " << var << *i << endl;
return false;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback