summaryrefslogtreecommitdiff
path: root/src/prop/sat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/prop/sat.h')
-rw-r--r--src/prop/sat.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/prop/sat.h b/src/prop/sat.h
index c00115cd8..2521f3ee7 100644
--- a/src/prop/sat.h
+++ b/src/prop/sat.h
@@ -101,7 +101,7 @@ public:
/** Virtual destructor to make g++ happy */
virtual ~SatInputInterface() { }
/** Assert a clause in the solver. */
- virtual void addClause(SatClause& clause, bool lemma) = 0;
+ virtual void addClause(SatClause& clause, bool removable) = 0;
/** Create a new boolean variable in the solver. */
virtual SatVariable newVar(bool theoryAtom = false) = 0;
/** Get the current decision level of the solver */
@@ -212,11 +212,11 @@ public:
bool solve();
- void addClause(SatClause& clause, bool lemma);
+ void addClause(SatClause& clause, bool removable);
SatVariable newVar(bool theoryAtom = false);
- void theoryCheck(theory::Theory::Effort effort, SatClause& conflict);
+ void theoryCheck(theory::Theory::Effort effort);
void explainPropagation(SatLiteral l, SatClause& explanation);
@@ -290,8 +290,8 @@ inline bool SatSolver::solve() {
return d_minisat->solve();
}
-inline void SatSolver::addClause(SatClause& clause, bool lemma) {
- d_minisat->addClause(clause, lemma ? Minisat::Solver::CLAUSE_LEMMA : Minisat::Solver::CLAUSE_PROBLEM);
+inline void SatSolver::addClause(SatClause& clause, bool removable) {
+ d_minisat->addClause(clause, removable);
}
inline SatVariable SatSolver::newVar(bool theoryAtom) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback