summaryrefslogtreecommitdiff
path: root/src/theory/sep/theory_sep.cpp
diff options
context:
space:
mode:
authorGereon Kremer <nafur42@gmail.com>2021-08-16 17:20:27 -0700
committerGitHub <noreply@github.com>2021-08-16 17:20:27 -0700
commita11de769885cf9ac4b2c2f06409976080b326fe6 (patch)
tree6c3c15110812d6fbcc7f96aa1d5bd782b02534c3 /src/theory/sep/theory_sep.cpp
parent11b6d67d32160681d4495fd92930ffb6ddb79abe (diff)
Push Env class into TheoryState (#7012)
This PR is a follow-up to #7011, making the Env object available in the TheoryState base class.
Diffstat (limited to 'src/theory/sep/theory_sep.cpp')
-rw-r--r--src/theory/sep/theory_sep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/sep/theory_sep.cpp b/src/theory/sep/theory_sep.cpp
index 0b16ddd27..92d15653e 100644
--- a/src/theory/sep/theory_sep.cpp
+++ b/src/theory/sep/theory_sep.cpp
@@ -46,7 +46,7 @@ TheorySep::TheorySep(Env& env, OutputChannel& out, Valuation valuation)
: Theory(THEORY_SEP, env, out, valuation),
d_lemmas_produced_c(getUserContext()),
d_bounds_init(false),
- d_state(getSatContext(), getUserContext(), valuation),
+ d_state(env, valuation),
d_im(*this, d_state, d_pnm, "theory::sep::"),
d_notify(*this),
d_reduce(getUserContext()),
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback