summaryrefslogtreecommitdiff
path: root/src/theory/bv/bv_solver_bitblast.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/bv/bv_solver_bitblast.h')
-rw-r--r--src/theory/bv/bv_solver_bitblast.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/theory/bv/bv_solver_bitblast.h b/src/theory/bv/bv_solver_bitblast.h
index c5134c6fc..1fb721deb 100644
--- a/src/theory/bv/bv_solver_bitblast.h
+++ b/src/theory/bv/bv_solver_bitblast.h
@@ -33,6 +33,7 @@ namespace cvc5 {
namespace theory {
namespace bv {
+class NotifyResetAssertions;
class BBRegistrar;
/**
@@ -70,6 +71,9 @@ class BVSolverBitblast : public BVSolver
const std::set<Node>& termSet) override;
private:
+ /** Initialize SAT solver and CNF stream. */
+ void initSatSolver();
+
/**
* Get value of `node` from SAT solver.
*
@@ -153,6 +157,9 @@ class BVSolverBitblast : public BVSolver
/** Option to enable/disable bit-level propagation. */
bool d_propagate;
+
+ /** Notifies when reset-assertion was called. */
+ std::unique_ptr<NotifyResetAssertions> d_resetNotify;
};
} // namespace bv
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback