summaryrefslogtreecommitdiff
path: root/src/theory/arith/theory_arith.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2012-06-27 22:45:51 +0000
committerTim King <taking@cs.nyu.edu>2012-06-27 22:45:51 +0000
commit86eb789dfb6b79a964912ac8289c2ecb28628667 (patch)
tree48298f8e26711c40b2cb84fa7c18773de285ba58 /src/theory/arith/theory_arith.cpp
parentcde31cf615ccd7f8e090f1713022e5aeae31ccb5 (diff)
Fixing a bug in proof production for the DioSolver.
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 badfe4c41..6174e9500 100644
--- a/src/theory/arith/theory_arith.cpp
+++ b/src/theory/arith/theory_arith.cpp
@@ -1521,7 +1521,7 @@ void TheoryArith::check(Effort effortLevel){
d_partialModel.commitAssignmentChanges();
revertOutOfConflict();
- if(Debug.isOn("arith::consistency")){
+ if(Debug.isOn("arith::consistency::comitonconflict")){
entireStateIsConsistent("commit on conflict");
}
}
@@ -2083,7 +2083,7 @@ bool TheoryArith::unenqueuedVariablesAreConsistent(){
}
Warning() << endl;
result = false;
- } else {
+ } else if(Debug.isOn("arith::consistency::initial")){
d_partialModel.printModel(var);
Warning() << "Initial var is not consistent for " << var << *i;
if(d_tableau.isBasic(var)){
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback