summaryrefslogtreecommitdiff
path: root/src/theory/arith/tableau.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2011-02-21 00:22:18 +0000
committerTim King <taking@cs.nyu.edu>2011-02-21 00:22:18 +0000
commit71b73af2ff69f41d71b892d6fc920a7b38fe736a (patch)
tree8828c05c8f2618072a2d93860d8c4126d7f4b560 /src/theory/arith/tableau.h
parent0db4ec99a2f289b66878d0ca3be9d43492eff3ad (diff)
- Adds the statistic d_avgNumRowsNotContainingOnPivot.
- Removed a bug in row counting in row counting.
Diffstat (limited to 'src/theory/arith/tableau.h')
-rw-r--r--src/theory/arith/tableau.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/theory/arith/tableau.h b/src/theory/arith/tableau.h
index 32c2986e3..36d61ba25 100644
--- a/src/theory/arith/tableau.h
+++ b/src/theory/arith/tableau.h
@@ -59,6 +59,10 @@ public:
{}
~Tableau();
+ size_t getNumRows() const {
+ return d_basicVariables.size();
+ }
+
void increaseSize(){
d_basicVariables.increaseSize();
d_rowsTable.push_back(NULL);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback