summaryrefslogtreecommitdiff
path: root/src/theory/booleans/theory_bool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/booleans/theory_bool.h')
-rw-r--r--src/theory/booleans/theory_bool.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/theory/booleans/theory_bool.h b/src/theory/booleans/theory_bool.h
index abe024282..d400868bc 100644
--- a/src/theory/booleans/theory_bool.h
+++ b/src/theory/booleans/theory_bool.h
@@ -27,11 +27,16 @@ namespace theory {
namespace booleans {
class TheoryBool : public Theory {
-public:
- TheoryBool(context::Context* c, context::UserContext* u, OutputChannel& out,
- Valuation valuation, const LogicInfo& logicInfo)
- : Theory(THEORY_BOOL, c, u, out, valuation, logicInfo)
- {}
+ public:
+ TheoryBool(Environment* env,
+ context::Context* c,
+ context::UserContext* u,
+ OutputChannel& out,
+ Valuation valuation,
+ const LogicInfo& logicInfo)
+ : Theory(THEORY_BOOL, env, c, u, out, valuation, logicInfo)
+ {
+ }
PPAssertStatus ppAssert(TNode in, SubstitutionMap& outSubstitutions) override;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback