summaryrefslogtreecommitdiff
path: root/src/theory/arrays
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arrays')
-rw-r--r--src/theory/arrays/theory_arrays.cpp5
-rw-r--r--src/theory/arrays/theory_arrays.h8
2 files changed, 6 insertions, 7 deletions
diff --git a/src/theory/arrays/theory_arrays.cpp b/src/theory/arrays/theory_arrays.cpp
index cbcccd734..f9e036aa3 100644
--- a/src/theory/arrays/theory_arrays.cpp
+++ b/src/theory/arrays/theory_arrays.cpp
@@ -55,9 +55,8 @@ const bool d_solveWrite2 = false;
TheoryArrays::TheoryArrays(context::Context* c, context::UserContext* u,
OutputChannel& out, Valuation valuation,
- const LogicInfo& logicInfo, SmtGlobals* globals,
- std::string name)
- : Theory(THEORY_ARRAY, c, u, out, valuation, logicInfo, globals, name),
+ const LogicInfo& logicInfo, std::string name)
+ : Theory(THEORY_ARRAY, c, u, out, valuation, logicInfo, name),
d_numRow(name + "theory::arrays::number of Row lemmas", 0),
d_numExt(name + "theory::arrays::number of Ext lemmas", 0),
d_numProp(name + "theory::arrays::number of propagations", 0),
diff --git a/src/theory/arrays/theory_arrays.h b/src/theory/arrays/theory_arrays.h
index 88d83bfb9..eba6c000e 100644
--- a/src/theory/arrays/theory_arrays.h
+++ b/src/theory/arrays/theory_arrays.h
@@ -93,7 +93,7 @@ class TheoryArrays : public Theory {
// MISC
/////////////////////////////////////////////////////////////////////////////
- private:
+ private:
/** True node for predicates = true */
Node d_true;
@@ -124,11 +124,11 @@ class TheoryArrays : public Theory {
/** conflicts in setModelVal */
IntStat d_numSetModelValConflicts;
- public:
+ public:
TheoryArrays(context::Context* c, context::UserContext* u, OutputChannel& out,
Valuation valuation, const LogicInfo& logicInfo,
- SmtGlobals* globals, std::string name = "");
+ std::string instanceName = "");
~TheoryArrays();
void setMasterEqualityEngine(eq::EqualityEngine* eq);
@@ -139,7 +139,7 @@ class TheoryArrays : public Theory {
// PREPROCESSING
/////////////////////////////////////////////////////////////////////////////
- private:
+ private:
// PPNotifyClass: dummy template class for d_ppEqualityEngine - notifications not used
class PPNotifyClass {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback