summaryrefslogtreecommitdiff
path: root/src/theory/uf/theory_uf.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-07-11 03:33:14 +0000
committerMorgan Deters <mdeters@gmail.com>2011-07-11 03:33:14 +0000
commit25e9c72dd689d3b621b901220794c652a3ba589a (patch)
tree58b14dd3818f3e7a8ca3311a0457716e7753a95e /src/theory/uf/theory_uf.h
parent587520ce888b88294fb9e4ca476e2425d8bf026e (diff)
merge from symmetry branch
Diffstat (limited to 'src/theory/uf/theory_uf.h')
-rw-r--r--src/theory/uf/theory_uf.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/theory/uf/theory_uf.h b/src/theory/uf/theory_uf.h
index eaab96f27..d78504dc8 100644
--- a/src/theory/uf/theory_uf.h
+++ b/src/theory/uf/theory_uf.h
@@ -27,6 +27,7 @@
#include "theory/theory.h"
#include "theory/uf/equality_engine.h"
+#include "theory/uf/symmetry_breaker.h"
#include "context/cdo.h"
#include "context/cdset.h"
@@ -87,6 +88,9 @@ private:
/** True node for predicates = false */
Node d_false;
+ /** Symmetry analyzer */
+ SymmetryBreaker d_symb;
+
public:
/** Constructs a new instance of TheoryUF w.r.t. the provided context.*/
@@ -113,12 +117,13 @@ public:
void preRegisterTerm(TNode term);
void explain(TNode n);
+ void staticLearning(TNode in, NodeBuilder<>& learned);
+ void presolve();
+
std::string identify() const {
return "THEORY_UF";
}
- void staticLearning(TNode in, NodeBuilder<>& learned);
-
};/* class TheoryUF */
}/* CVC4::theory::uf namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback