summaryrefslogtreecommitdiff
path: root/src/theory/arith/simplex.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2012-06-12 19:57:23 +0000
committerTim King <taking@cs.nyu.edu>2012-06-12 19:57:23 +0000
commit883b975204c9d08d3c6eeae56c9eb0191f850438 (patch)
tree420920a9b1fa4ddb2f692e393dc77ad359ca4e3c /src/theory/arith/simplex.cpp
parent73e4e0b71e7c535b1005fe02d2303c9ed8cb3c62 (diff)
Fix to yesterday's change in arithmetic.
Diffstat (limited to 'src/theory/arith/simplex.cpp')
-rw-r--r--src/theory/arith/simplex.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/theory/arith/simplex.cpp b/src/theory/arith/simplex.cpp
index b5475586a..8fb99a9ae 100644
--- a/src/theory/arith/simplex.cpp
+++ b/src/theory/arith/simplex.cpp
@@ -493,7 +493,9 @@ Node SimplexDecisionProcedure::weakenConflict(bool aboveUpper, ArithVar basicVar
const Rational& coeff = entry.getCoefficient();
bool weakening = false;
Constraint c = weakestExplanation(aboveUpper, surplus, v, coeff, weakening, basicVar);
- Debug("weak") << "weak : " << weakening << " " << c->assertedToTheTheory()
+ Debug("weak") << "weak : " << weakening << " "
+ << c->assertedToTheTheory() << " "
+ << d_partialModel.getAssignment(v) << " "
<< c << endl
<< c->explainForConflict() << endl;
anyWeakenings = anyWeakenings || weakening;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback