summaryrefslogtreecommitdiff
path: root/src/theory/uf/theory_uf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/uf/theory_uf.h')
-rw-r--r--src/theory/uf/theory_uf.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/theory/uf/theory_uf.h b/src/theory/uf/theory_uf.h
index 6cea8b85b..f8e17b1de 100644
--- a/src/theory/uf/theory_uf.h
+++ b/src/theory/uf/theory_uf.h
@@ -97,14 +97,14 @@ private:
public:
/** Constructs a new instance of TheoryUF w.r.t. the provided context.*/
- TheoryUF(context::Context* ctxt, OutputChannel& out, Valuation valuation):
- Theory(THEORY_UF, ctxt, out, valuation),
+ 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, ctxt, "theory::uf::TheoryUF"),
- d_knownFacts(ctxt),
- d_conflict(ctxt, false),
- d_literalsToPropagate(ctxt),
- d_literalsToPropagateIndex(ctxt, 0)
+ d_equalityEngine(d_notify, c, "theory::uf::TheoryUF"),
+ d_knownFacts(c),
+ d_conflict(c, false),
+ d_literalsToPropagate(c),
+ d_literalsToPropagateIndex(c, 0)
{
// The kinds we are treating as function application in congruence
d_equalityEngine.addFunctionKind(kind::APPLY_UF);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback