summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_solver.h
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2021-09-09 18:54:12 -0700
committerGitHub <noreply@github.com>2021-09-10 01:54:12 +0000
commit5d3126cf3b3edb0dac89dac7566332f29f80fa06 (patch)
treebc1852f575a74f26345e94add5e76f85ca3b3a85 /src/theory/bv/bv_solver.h
parent1db584888d88b575f8929ffa0bed31e2c62b5e2d (diff)
bv: Use EnvObj::rewrite() and EnvObj::options() in BvSolver. (#7171)
Diffstat (limited to 'src/theory/bv/bv_solver.h')
-rw-r--r--src/theory/bv/bv_solver.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/theory/bv/bv_solver.h b/src/theory/bv/bv_solver.h
index c959fb648..510c8a29a 100644
--- a/src/theory/bv/bv_solver.h
+++ b/src/theory/bv/bv_solver.h
@@ -20,17 +20,19 @@
#ifndef CVC5__THEORY__BV__BV_SOLVER_H
#define CVC5__THEORY__BV__BV_SOLVER_H
+#include "smt/env.h"
+#include "smt/env_obj.h"
#include "theory/theory.h"
namespace cvc5 {
namespace theory {
namespace bv {
-class BVSolver
+class BVSolver : protected EnvObj
{
public:
- BVSolver(TheoryState& state, TheoryInferenceManager& inferMgr)
- : d_state(state), d_im(inferMgr){};
+ BVSolver(Env& env, TheoryState& state, TheoryInferenceManager& inferMgr)
+ : EnvObj(env), d_state(state), d_im(inferMgr){};
virtual ~BVSolver() {}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback