summaryrefslogtreecommitdiff
path: root/src/theory/arith/arith_state.h
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/arith/arith_state.h
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/arith/arith_state.h')
-rw-r--r--src/theory/arith/arith_state.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/theory/arith/arith_state.h b/src/theory/arith/arith_state.h
index a54ae6bf0..0f0f02f02 100644
--- a/src/theory/arith/arith_state.h
+++ b/src/theory/arith/arith_state.h
@@ -38,7 +38,8 @@ class TheoryArithPrivate;
class ArithState : public TheoryState
{
public:
- ArithState(context::Context* c, context::UserContext* u, Valuation val);
+ ArithState(Env& env,
+ Valuation val);
~ArithState() {}
/** Are we currently in conflict? */
bool isInConflict() const override;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback