summaryrefslogtreecommitdiff
path: root/src/theory/idl
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/idl')
-rw-r--r--src/theory/idl/theory_idl.cpp4
-rw-r--r--src/theory/idl/theory_idl.h3
2 files changed, 3 insertions, 4 deletions
diff --git a/src/theory/idl/theory_idl.cpp b/src/theory/idl/theory_idl.cpp
index 8cba51c8f..815f5e76a 100644
--- a/src/theory/idl/theory_idl.cpp
+++ b/src/theory/idl/theory_idl.cpp
@@ -32,8 +32,8 @@ namespace idl {
TheoryIdl::TheoryIdl(context::Context* c, context::UserContext* u,
OutputChannel& out, Valuation valuation,
- const LogicInfo& logicInfo, SmtGlobals* globals)
- : Theory(THEORY_ARITH, c, u, out, valuation, logicInfo, globals)
+ const LogicInfo& logicInfo)
+ : Theory(THEORY_ARITH, c, u, out, valuation, logicInfo)
, d_model(c)
, d_assertionsDB(c)
{}
diff --git a/src/theory/idl/theory_idl.h b/src/theory/idl/theory_idl.h
index aa7267eb7..7c879e722 100644
--- a/src/theory/idl/theory_idl.h
+++ b/src/theory/idl/theory_idl.h
@@ -45,8 +45,7 @@ public:
/** Theory constructor. */
TheoryIdl(context::Context* c, context::UserContext* u, OutputChannel& out,
- Valuation valuation, const LogicInfo& logicInfo,
- SmtGlobals* globals);
+ Valuation valuation, const LogicInfo& logicInfo);
/** Pre-processing of input atoms */
Node ppRewrite(TNode atom);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback