summaryrefslogtreecommitdiff
path: root/src/prop/sat_solver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/prop/sat_solver.h')
-rw-r--r--src/prop/sat_solver.h31
1 files changed, 6 insertions, 25 deletions
diff --git a/src/prop/sat_solver.h b/src/prop/sat_solver.h
index 5222af200..49064c20f 100644
--- a/src/prop/sat_solver.h
+++ b/src/prop/sat_solver.h
@@ -26,13 +26,13 @@
#include "context/cdlist.h"
#include "context/context.h"
#include "expr/node.h"
+#include "proof/resolution_bitvector_proof.h"
#include "proof/clause_id.h"
#include "prop/sat_solver_types.h"
+#include "prop/bv_sat_solver_notify.h"
#include "util/statistics_registry.h"
namespace CVC4 {
-
-class BitVectorProof;
namespace prop {
@@ -96,9 +96,9 @@ public:
/** Check if the solver is in an inconsistent state */
virtual bool ok() const = 0;
-
- virtual void setProofLog( BitVectorProof * bvp ) {}
-
+
+ virtual void setProofLog(proof::ResolutionBitVectorProof* bvp) {}
+
};/* class SatSolver */
@@ -107,27 +107,8 @@ public:
virtual ~BVSatSolverInterface() {}
/** Interface for notifications */
- class Notify {
- public:
-
- virtual ~Notify() {};
-
- /**
- * If the notify returns false, the solver will break out of whatever it's currently doing
- * with an "unknown" answer.
- */
- virtual bool notify(SatLiteral lit) = 0;
-
- /**
- * Notify about a learnt clause.
- */
- virtual void notify(SatClause& clause) = 0;
- virtual void spendResource(unsigned amount) = 0;
- virtual void safePoint(unsigned amount) = 0;
-
- };/* class BVSatSolverInterface::Notify */
- virtual void setNotify(Notify* notify) = 0;
+ virtual void setNotify(BVSatSolverNotify* notify) = 0;
virtual void markUnremovable(SatLiteral lit) = 0;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback