summaryrefslogtreecommitdiff
path: root/src/theory/arith/constraint.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2015-06-15 00:28:10 +0200
committerTim King <taking@cs.nyu.edu>2015-06-15 00:28:10 +0200
commitda4276464f90ffd091cc98ee1f74412018481eb3 (patch)
tree72c3f41e8e0ed05ddc9824a5e3c08dcfa29c7f4e /src/theory/arith/constraint.cpp
parent7ac9d35366c0d5ed5aee5d26862f39a2c98bd521 (diff)
Fixing an assertion Constraint::assertionFringe(...) to allow hasTrichotomyProof().
Diffstat (limited to 'src/theory/arith/constraint.cpp')
-rw-r--r--src/theory/arith/constraint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/arith/constraint.cpp b/src/theory/arith/constraint.cpp
index 822f0e578..f1cac9044 100644
--- a/src/theory/arith/constraint.cpp
+++ b/src/theory/arith/constraint.cpp
@@ -1346,7 +1346,7 @@ void Constraint::assertionFringe(ConstraintCPVec& v){
v[writePos] = vi;
writePos++;
}else{
- Assert(vi->hasFarkasProof() || vi->hasIntHoleProof() );
+ Assert(vi->hasTrichotomyProof() || vi->hasFarkasProof() || vi->hasIntHoleProof() );
AntecedentId p = vi->getEndAntecedent();
ConstraintCP antecedent = antecedents[p];
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback