summaryrefslogtreecommitdiff
path: root/src/theory/uf/theory_uf.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-11-30 22:41:02 +0000
committerMorgan Deters <mdeters@gmail.com>2011-11-30 22:41:02 +0000
commit828df15711d55acbe55a0b681e30054ce269d4b1 (patch)
treecb9f8e8d0d191bde4055eeb6ba29c9ed55a6ee25 /src/theory/uf/theory_uf.h
parent70552e569ad46010ab8b00f93d1c7741bafb29b1 (diff)
fix linking errors on oneiric
Diffstat (limited to 'src/theory/uf/theory_uf.h')
-rw-r--r--src/theory/uf/theory_uf.h21
1 files changed, 1 insertions, 20 deletions
diff --git a/src/theory/uf/theory_uf.h b/src/theory/uf/theory_uf.h
index 769caba5c..2a02208dc 100644
--- a/src/theory/uf/theory_uf.h
+++ b/src/theory/uf/theory_uf.h
@@ -102,26 +102,7 @@ private:
public:
/** Constructs a new instance of TheoryUF w.r.t. the provided context.*/
- TheoryUF(context::Context* c, context::UserContext* u, OutputChannel& out, Valuation valuation):
- Theory(THEORY_UF, c, u, out, valuation),
- d_notify(*this),
- d_equalityEngine(d_notify, c, "theory::uf::TheoryUF"),
- d_conflict(c, false),
- d_literalsToPropagate(c),
- d_literalsToPropagateIndex(c, 0),
- d_functionsTerms(c)
- {
- // The kinds we are treating as function application in congruence
- d_equalityEngine.addFunctionKind(kind::APPLY_UF);
- d_equalityEngine.addFunctionKind(kind::EQUAL);
-
- // The boolean constants
- d_true = NodeManager::currentNM()->mkConst<bool>(true);
- d_false = NodeManager::currentNM()->mkConst<bool>(false);
- d_equalityEngine.addTerm(d_true);
- d_equalityEngine.addTerm(d_false);
- d_equalityEngine.addTriggerEquality(d_true, d_false, d_false);
- }
+ TheoryUF(context::Context* c, context::UserContext* u, OutputChannel& out, Valuation valuation);
void check(Effort);
void propagate(Effort);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback