summaryrefslogtreecommitdiff
path: root/src/prop/sat_solver.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-03-25 20:12:07 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-03-25 20:12:07 +0000
commit0d080430206880ffc19050acfa01aae1475f1978 (patch)
treeb1334148abb7311eca1afcb00fdce69f606ac22f /src/prop/sat_solver.h
parent426abc52a0f1631f2adee0eef845e3f8946c5088 (diff)
sat_module.h,cpp -> sat_solver.h,cpp (as intended)
Diffstat (limited to 'src/prop/sat_solver.h')
-rw-r--r--src/prop/sat_solver.h297
1 files changed, 297 insertions, 0 deletions
diff --git a/src/prop/sat_solver.h b/src/prop/sat_solver.h
new file mode 100644
index 000000000..56c6c2783
--- /dev/null
+++ b/src/prop/sat_solver.h
@@ -0,0 +1,297 @@
+/********************* */
+/*! \file sat_module.h
+ ** \verbatim
+ ** Original author: lianah
+ ** Major contributors:
+ ** Minor contributors (to current version):
+ ** This file is part of the CVC4 prototype.
+ ** Copyright (c) 2009, 2010, 2011 The Analysis of Computer Systems Group (ACSys)
+ ** Courant Institute of Mathematical Sciences
+ ** New York University
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.\endverbatim
+ **
+ ** \brief SAT Solver.
+ **
+ ** SAT Solver.
+ **/
+
+#include "cvc4_private.h"
+
+#ifndef __CVC4__PROP__SAT_MODULE_H
+#define __CVC4__PROP__SAT_MODULE_H
+
+#include <stdint.h>
+#include "util/options.h"
+#include "util/stats.h"
+#include "context/cdlist.h"
+
+// DPLLT Minisat
+#include "prop/minisat/core/SolverTypes.h"
+
+// BV Minisat
+#include "prop/bvminisat/core/SolverTypes.h"
+
+
+namespace Minisat{
+class Solver;
+class SimpSolver;
+}
+
+namespace BVMinisat{
+class Solver;
+class SimpSolver;
+}
+
+
+namespace CVC4 {
+namespace prop {
+
+class TheoryProxy;
+
+enum SatLiteralValue {
+ SatValUnknown,
+ SatValTrue,
+ SatValFalse
+};
+
+
+typedef uint64_t SatVariable;
+// special constant
+const SatVariable undefSatVariable = SatVariable(-1);
+
+class SatLiteral {
+ uint64_t d_value;
+public:
+ SatLiteral() :
+ d_value(undefSatVariable)
+ {}
+
+ SatLiteral(SatVariable var, bool negated = false) { d_value = var + var + (int)negated; }
+ SatLiteral operator~() {
+ return SatLiteral(getSatVariable(), !isNegated());
+ }
+ bool operator==(const SatLiteral& other) const {
+ return d_value == other.d_value;
+ }
+ bool operator!=(const SatLiteral& other) const {
+ return !(*this == other);
+ }
+ std::string toString();
+ bool isNegated() const { return d_value & 1; }
+ size_t toHash() const {return (size_t)d_value; }
+ bool isNull() const { return d_value == (uint64_t)-1; }
+ SatVariable getSatVariable() const {return d_value >> 1; }
+};
+
+// special constant
+const SatLiteral undefSatLiteral = SatLiteral(undefSatVariable);
+
+
+struct SatLiteralHashFunction {
+ inline size_t operator() (const SatLiteral& literal) const {
+ return literal.toHash();
+ }
+};
+
+typedef std::vector<SatLiteral> SatClause;
+
+class SatSolver {
+public:
+ /** Virtual destructor to make g++ happy */
+ virtual ~SatSolver() { }
+
+ /** Assert a clause in the solver. */
+ virtual void addClause(SatClause& clause, bool removable) = 0;
+
+ /** Create a new boolean variable in the solver. */
+ virtual SatVariable newVar(bool theoryAtom = false) = 0;
+
+
+ /** Check the satisfiability of the added clauses */
+ virtual SatLiteralValue solve() = 0;
+
+ /** Check the satisfiability of the added clauses */
+ virtual SatLiteralValue solve(long unsigned int&) = 0;
+
+ /** Interrupt the solver */
+ virtual void interrupt() = 0;
+
+ /** Call value() during the search.*/
+ virtual SatLiteralValue value(SatLiteral l) = 0;
+
+ /** Call modelValue() when the search is done.*/
+ virtual SatLiteralValue modelValue(SatLiteral l) = 0;
+
+ virtual void unregisterVar(SatLiteral lit) = 0;
+
+ virtual void renewVar(SatLiteral lit, int level = -1) = 0;
+
+ virtual int getAssertionLevel() const = 0;
+
+};
+
+
+class BVSatSolverInterface: public SatSolver {
+public:
+ virtual SatLiteralValue solve(const context::CDList<SatLiteral> & assumptions) = 0;
+
+ virtual void markUnremovable(SatLiteral lit) = 0;
+
+ virtual void getUnsatCore(SatClause& unsatCore) = 0;
+};
+
+
+class DPLLSatSolverInterface: public SatSolver {
+public:
+ virtual void initialize(context::Context* context, prop::TheoryProxy* theoryProxy) = 0;
+
+ virtual void push() = 0;
+
+ virtual void pop() = 0;
+
+ virtual bool properExplanation(SatLiteral lit, SatLiteral expl) const = 0;
+
+};
+
+// toodo add ifdef
+
+
+class MinisatSatSolver: public BVSatSolverInterface {
+ BVMinisat::SimpSolver* d_minisat;
+
+ MinisatSatSolver();
+public:
+ ~MinisatSatSolver();
+ void addClause(SatClause& clause, bool removable);
+
+ SatVariable newVar(bool theoryAtom = false);
+
+ void markUnremovable(SatLiteral lit);
+
+ void interrupt();
+
+ SatLiteralValue solve();
+ SatLiteralValue solve(long unsigned int&);
+ SatLiteralValue solve(const context::CDList<SatLiteral> & assumptions);
+ void getUnsatCore(SatClause& unsatCore);
+
+ SatLiteralValue value(SatLiteral l);
+ SatLiteralValue modelValue(SatLiteral l);
+
+ void unregisterVar(SatLiteral lit);
+ void renewVar(SatLiteral lit, int level = -1);
+ int getAssertionLevel() const;
+
+
+ // helper methods for converting from the internal Minisat representation
+
+ static SatVariable toSatVariable(BVMinisat::Var var);
+ static BVMinisat::Lit toMinisatLit(SatLiteral lit);
+ static SatLiteral toSatLiteral(BVMinisat::Lit lit);
+ static SatLiteralValue toSatLiteralValue(bool res);
+ static SatLiteralValue toSatLiteralValue(BVMinisat::lbool res);
+
+ static void toMinisatClause(SatClause& clause, BVMinisat::vec<BVMinisat::Lit>& minisat_clause);
+ static void toSatClause (BVMinisat::vec<BVMinisat::Lit>& clause, SatClause& sat_clause);
+
+ class Statistics {
+ public:
+ ReferenceStat<uint64_t> d_statStarts, d_statDecisions;
+ ReferenceStat<uint64_t> d_statRndDecisions, d_statPropagations;
+ ReferenceStat<uint64_t> d_statConflicts, d_statClausesLiterals;
+ ReferenceStat<uint64_t> d_statLearntsLiterals, d_statMaxLiterals;
+ ReferenceStat<uint64_t> d_statTotLiterals;
+ ReferenceStat<int> d_statEliminatedVars;
+ Statistics();
+ ~Statistics();
+ void init(BVMinisat::SimpSolver* minisat);
+ };
+
+ Statistics d_statistics;
+ friend class SatSolverFactory;
+};
+
+
+class DPLLMinisatSatSolver : public DPLLSatSolverInterface {
+
+ /** The SatSolver used */
+ Minisat::SimpSolver* d_minisat;
+
+
+ /** The SatSolver uses this to communicate with the theories */
+ TheoryProxy* d_theoryProxy;
+
+ /** Context we will be using to synchronzie the sat solver */
+ context::Context* d_context;
+
+ DPLLMinisatSatSolver ();
+
+public:
+
+ ~DPLLMinisatSatSolver();
+ static SatVariable toSatVariable(Minisat::Var var);
+ static Minisat::Lit toMinisatLit(SatLiteral lit);
+ static SatLiteral toSatLiteral(Minisat::Lit lit);
+ static SatLiteralValue toSatLiteralValue(bool res);
+ static SatLiteralValue toSatLiteralValue(Minisat::lbool res);
+
+ static void toMinisatClause(SatClause& clause, Minisat::vec<Minisat::Lit>& minisat_clause);
+ static void toSatClause (Minisat::vec<Minisat::Lit>& clause, SatClause& sat_clause);
+
+ void initialize(context::Context* context, TheoryProxy* theoryProxy);
+
+ void addClause(SatClause& clause, bool removable);
+
+ SatVariable newVar(bool theoryAtom = false);
+
+ SatLiteralValue solve();
+ SatLiteralValue solve(long unsigned int&);
+
+ void interrupt();
+
+ SatLiteralValue value(SatLiteral l);
+
+ SatLiteralValue modelValue(SatLiteral l);
+
+ bool properExplanation(SatLiteral lit, SatLiteral expl) const;
+
+ /** Incremental interface */
+
+ int getAssertionLevel() const;
+
+ void push();
+
+ void pop();
+
+ void unregisterVar(SatLiteral lit);
+
+ void renewVar(SatLiteral lit, int level = -1);
+
+ class Statistics {
+ private:
+ ReferenceStat<uint64_t> d_statStarts, d_statDecisions;
+ ReferenceStat<uint64_t> d_statRndDecisions, d_statPropagations;
+ ReferenceStat<uint64_t> d_statConflicts, d_statClausesLiterals;
+ ReferenceStat<uint64_t> d_statLearntsLiterals, d_statMaxLiterals;
+ ReferenceStat<uint64_t> d_statTotLiterals;
+ public:
+ Statistics();
+ ~Statistics();
+ void init(Minisat::SimpSolver* d_minisat);
+ };
+ Statistics d_statistics;
+
+ friend class SatSolverFactory;
+};
+
+class SatSolverFactory {
+public:
+ static MinisatSatSolver* createMinisat();
+ static DPLLMinisatSatSolver* createDPLLMinisat();
+};
+
+}/* prop namespace */
+}/* CVC4 namespace */
+
+#endif /* __CVC4__PROP__SAT_MODULE_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback