summaryrefslogtreecommitdiff
path: root/src/theory/fp
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/fp
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/fp')
-rw-r--r--src/theory/fp/theory_fp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/fp/theory_fp.cpp b/src/theory/fp/theory_fp.cpp
index a016c7897..bd5662cdd 100644
--- a/src/theory/fp/theory_fp.cpp
+++ b/src/theory/fp/theory_fp.cpp
@@ -70,7 +70,7 @@ TheoryFp::TheoryFp(Env& env, OutputChannel& out, Valuation valuation)
d_floatToRealMap(getUserContext()),
d_abstractionMap(getUserContext()),
d_rewriter(getUserContext()),
- d_state(getSatContext(), getUserContext(), valuation),
+ d_state(env, valuation),
d_im(*this, d_state, d_pnm, "theory::fp::", false),
d_wbFactsCache(getUserContext())
{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback