summaryrefslogtreecommitdiff
path: root/src/theory/arith/error_set.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2013-05-03 13:14:17 -0400
committerTim King <taking@cs.nyu.edu>2013-05-03 13:14:17 -0400
commitcb09a647dc2524772e13946299f7b29ae627ae60 (patch)
treebb30a086e48f55ba810dac52f14414fcf46f6174 /src/theory/arith/error_set.h
parentfb05d8411fdf905550d0bfdef56f4a4c3ed6a8ef (diff)
parent94decb8503be1fcc894094a0f2656e25d8aef251 (diff)
Merge branch 'fcexplanations'
Diffstat (limited to 'src/theory/arith/error_set.h')
-rw-r--r--src/theory/arith/error_set.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/arith/error_set.h b/src/theory/arith/error_set.h
index 91d7e49ea..27ac6ccd2 100644
--- a/src/theory/arith/error_set.h
+++ b/src/theory/arith/error_set.h
@@ -377,8 +377,8 @@ public:
uint32_t sumMetric(ArithVar a) const{
Assert(inError(a));
- BoundCounts bcs = d_boundLookup.boundCounts(a);
- uint32_t count = getSgn(a) > 0 ? bcs.atUpperBounds() : bcs.atLowerBounds();
+ BoundCounts bcs = d_boundLookup.atBounds(a);
+ uint32_t count = getSgn(a) > 0 ? bcs.upperBoundCount() : bcs.lowerBoundCount();
uint32_t length = d_tableauSizes.getRowLength(a);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback