summaryrefslogtreecommitdiff
path: root/src/theory/arith/tableau.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2013-04-30 19:09:06 -0400
committerTim King <taking@cs.nyu.edu>2013-04-30 19:09:06 -0400
commitd833d5790a38dc62d8a4714a13253253767c377e (patch)
treeef81e71be4cc53f00767b4606c407a65735bc88c /src/theory/arith/tableau.h
parent2b9e032cc93a96dccab8757326645da82b5866e5 (diff)
Draft of the new propagation code.
Diffstat (limited to 'src/theory/arith/tableau.h')
-rw-r--r--src/theory/arith/tableau.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/theory/arith/tableau.h b/src/theory/arith/tableau.h
index 8b6ef1df6..deed7e7be 100644
--- a/src/theory/arith/tableau.h
+++ b/src/theory/arith/tableau.h
@@ -72,8 +72,12 @@ public:
return getColumn(x).begin();
}
+ RowIterator ridRowIterator(RowIndex rid) const {
+ return getRow(rid).begin();
+ }
+
RowIterator basicRowIterator(ArithVar basic) const {
- return getRow(basicToRowIndex(basic)).begin();
+ return ridRowIterator(basicToRowIndex(basic));
}
const Entry& basicFindEntry(ArithVar basic, ArithVar col) const {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback