summaryrefslogtreecommitdiff
path: root/src/theory/arith/simplex.cpp
diff options
context:
space:
mode:
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