summaryrefslogtreecommitdiff
path: root/src/theory/theory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory.cpp')
-rw-r--r--src/theory/theory.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/theory/theory.cpp b/src/theory/theory.cpp
index 0c2624d64..44b3da53e 100644
--- a/src/theory/theory.cpp
+++ b/src/theory/theory.cpp
@@ -132,11 +132,8 @@ void Theory::finishInitStandalone()
if (needsEqualityEngine(esi))
{
// always associated with the same SAT context as the theory
- d_allocEqualityEngine.reset(
- new eq::EqualityEngine(*esi.d_notify,
- getSatContext(),
- esi.d_name,
- esi.d_constantsAreTriggers));
+ d_allocEqualityEngine.reset(new eq::EqualityEngine(
+ *esi.d_notify, context(), esi.d_name, esi.d_constantsAreTriggers));
// use it as the official equality engine
setEqualityEngine(d_allocEqualityEngine.get());
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback