summaryrefslogtreecommitdiff
path: root/src/theory/arith/bound_counts.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/bound_counts.h')
-rw-r--r--src/theory/arith/bound_counts.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/bound_counts.h b/src/theory/arith/bound_counts.h
index 7bd69190e..43fa4e437 100644
--- a/src/theory/arith/bound_counts.h
+++ b/src/theory/arith/bound_counts.h
@@ -20,7 +20,7 @@
#include <stdint.h>
-#include "base/cvc4_assert.h"
+#include "base/check.h"
#include "theory/arith/arithvar.h"
#include "util/dense_map.h"
@@ -66,7 +66,7 @@ public:
}
inline BoundCounts operator-(BoundCounts bc) const {
- Assert( *this >= bc );
+ Assert(*this >= bc);
return BoundCounts(d_lowerBoundCount - bc.d_lowerBoundCount,
d_upperBoundCount - bc.d_upperBoundCount);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback