Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion minisat/simp/SimpSolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class SimpSolver : public Solver
void addToSimpStructures(const CRef cr, bool useForSimplification = true);
bool substitute(Var v, Lit x); // Replace all occurences of v with x (may cause a contradiction).
void addConstrainClause(vec<Lit> &newConstrainClause);
void reset_constrain_clause();

// Variable mode:
//
Expand Down Expand Up @@ -194,7 +195,6 @@ class SimpSolver : public Solver
void extendModel();
/// exchange current elimination stack with the one handed in
void swapEliminationStack(vec<uint32_t> &otherElimClauses);
void reset_constrain_clause();

void removeClause(CRef cr);
bool strengthenClause(CRef cr, Lit l);
Expand Down