summaryrefslogtreecommitdiff
path: root/src/theory/arith/constraint_forward.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2014-03-07 18:00:37 -0500
committerTim King <taking@cs.nyu.edu>2014-03-07 18:00:52 -0500
commit9ccdea06edbc72e3ecd282e9e015f6fc4b2e7173 (patch)
treecde6138cb9ab6ef0b7c15edf42e3e8cc53637002 /src/theory/arith/constraint_forward.h
parent42be934ef4d4430944ae9074c7202a7d130c75bb (diff)
Merging a squash of the branch timothy-king/CVC4/glpknecfix c95bf7d4f1 into master. See the CAV14 submission for an explanation of the changes to the integer solver's behavior. If compiled against the our custom extension of glpk, https://github.com/timothy-king/glpk-cut-log, this should have substantial differences in behavior. This should have moderate performance differences for linear real and integer arithmetic even if these features are disabled.
Diffstat (limited to 'src/theory/arith/constraint_forward.h')
-rw-r--r--src/theory/arith/constraint_forward.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/theory/arith/constraint_forward.h b/src/theory/arith/constraint_forward.h
index f01c64b60..19326c0b3 100644
--- a/src/theory/arith/constraint_forward.h
+++ b/src/theory/arith/constraint_forward.h
@@ -16,23 +16,26 @@
** minimize interaction between header files.
**/
-#include "cvc4_private.h"
-
#ifndef __CVC4__THEORY__ARITH__CONSTRAINT_FORWARD_H
#define __CVC4__THEORY__ARITH__CONSTRAINT_FORWARD_H
+#include "cvc4_private.h"
+#include <vector>
+
namespace CVC4 {
namespace theory {
namespace arith {
-class ConstraintValue;
-typedef ConstraintValue* Constraint;
-typedef const ConstraintValue* const ConstConstraint;
+class Constraint_;
+typedef Constraint_* ConstraintP;
+typedef const Constraint_* ConstraintCP;
-static const Constraint NullConstraint = NULL;
+const ConstraintP NullConstraint = NULL;
class ConstraintDatabase;
+typedef std::vector<ConstraintCP> ConstraintCPVec;
+
}/* CVC4::theory::arith namespace */
}/* CVC4::theory namespace */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback