summaryrefslogtreecommitdiff
path: root/src/theory/arith/simplex.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2012-04-27 14:47:10 +0000
committerTim King <taking@cs.nyu.edu>2012-04-27 14:47:10 +0000
commitf813ed144b0945334e03bfd769ea3c2cf8b75843 (patch)
treee70c9bddf5445aac50b5080c2b1719e6ffb478e0 /src/theory/arith/simplex.h
parent68237f7d39a03905be4cc133a42083fc3342adb4 (diff)
This merges in the branch cvc4/branches/arithmetic/matrix into trunk.
- Splits the functionality of having a sparse matrix of Ts and a solved matrix of rationals in tableau. - Splits ArithVarSet into DenseMap and CDDenseSet and simplifies the code. - No performance loss!
Diffstat (limited to 'src/theory/arith/simplex.h')
-rw-r--r--src/theory/arith/simplex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arith/simplex.h b/src/theory/arith/simplex.h
index 7ad7734c7..6dcfccb8e 100644
--- a/src/theory/arith/simplex.h
+++ b/src/theory/arith/simplex.h
@@ -52,14 +52,14 @@
#include "theory/arith/arithvar.h"
#include "theory/arith/arith_priority_queue.h"
-#include "theory/arith/arithvar_set.h"
#include "theory/arith/delta_rational.h"
-#include "theory/arith/tableau.h"
+#include "theory/arith/matrix.h"
#include "theory/arith/partial_model.h"
#include "theory/arith/linear_equality.h"
#include "context/cdlist.h"
+#include "util/dense_map.h"
#include "util/options.h"
#include "util/stats.h"
@@ -98,7 +98,7 @@ private:
NodeCallBack& d_conflictChannel;
/** Maps a variable to how many times they have been used as a pivot in the simplex search. */
- ArithVarMultiset d_pivotsInRound;
+ DenseMultiset d_pivotsInRound;
/** Stores to the DeltaRational constant 0. */
DeltaRational d_DELTA_ZERO;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback