summaryrefslogtreecommitdiff
path: root/contrib/alttheoryskel
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/alttheoryskel')
-rw-r--r--contrib/alttheoryskel/theory_DIR.cpp5
-rw-r--r--contrib/alttheoryskel/theory_DIR.h3
2 files changed, 5 insertions, 3 deletions
diff --git a/contrib/alttheoryskel/theory_DIR.cpp b/contrib/alttheoryskel/theory_DIR.cpp
index ce29fd34d..3f89abbab 100644
--- a/contrib/alttheoryskel/theory_DIR.cpp
+++ b/contrib/alttheoryskel/theory_DIR.cpp
@@ -11,8 +11,9 @@ Theory$camel::Theory$camel(context::Context* c,
context::UserContext* u,
OutputChannel& out,
Valuation valuation,
- const LogicInfo& logicInfo) :
- Theory(THEORY_$alt_id, c, u, out, valuation, logicInfo) {
+ const LogicInfo& logicInfo,
+ SmtGlobals* globals) :
+ Theory(THEORY_$alt_id, c, u, out, valuation, logicInfo, globals) {
}/* Theory$camel::Theory$camel() */
void Theory$camel::check(Effort level) {
diff --git a/contrib/alttheoryskel/theory_DIR.h b/contrib/alttheoryskel/theory_DIR.h
index d8e652b7c..a26d76ad5 100644
--- a/contrib/alttheoryskel/theory_DIR.h
+++ b/contrib/alttheoryskel/theory_DIR.h
@@ -17,7 +17,8 @@ public:
context::UserContext* u,
OutputChannel& out,
Valuation valuation,
- const LogicInfo& logicInfo);
+ const LogicInfo& logicInfo,
+ SmtGlobals* globals);
void check(Effort);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback