org.sat4j.minisat.core
Class Solver<L extends ILits>

java.lang.Object
  extended by org.sat4j.minisat.core.Solver<L>
All Implemented Interfaces:
java.io.Serializable, Learner, UnitPropagationListener, IProblem, ISolver
Direct Known Subclasses:
PBSolver

public class Solver<L extends ILits>
extends java.lang.Object
implements ISolver, UnitPropagationListener, Learner

The backbone of the library providing the modular implementation of a MiniSAT (Chaff) like solver.

Author:
leberre
See Also:
Serialized Form

Field Summary
protected  AssertingClauseGenerator analyzer
           
protected  DataStructureFactory<L> dsfactory
           
 org.sat4j.minisat.core.Solver.ISimplifier EXPENSIVE_SIMPLIFICATION
           
static org.sat4j.minisat.core.Solver.ISimplifier NO_SIMPLIFICATION
           
protected  int rootLevel
          S?
 org.sat4j.minisat.core.Solver.ISimplifier SIMPLE_SIMPLIFICATION
           
protected  IVecInt trail
          affectation en ordre chronologique
protected  IVecInt trailLim
          indice des s?
protected  L voc
           
 
Constructor Summary
Solver(AssertingClauseGenerator acg, LearningStrategy<L> learner, DataStructureFactory<L> dsf, IOrder<L> order, RestartStrategy restarter)
          creates a Solver without LearningListener.
Solver(AssertingClauseGenerator acg, LearningStrategy<L> learner, DataStructureFactory<L> dsf, SearchParams params, IOrder<L> order, RestartStrategy restarter)
           
 
Method Summary
 void addAllClauses(IVec<IVecInt> clauses)
          Create clauses from a set of set of literals.
 IConstr addAtLeast(IVecInt literals, int degree)
          Create a cardinality constraint of the type "at least n of those literals must be satisfied"
 IConstr addAtMost(IVecInt literals, int degree)
          Create a cardinality constraint of the type "at most n of those literals must be satisfied"
 IConstr addClause(IVecInt literals)
          Create a clause from a set of literals The literals are represented by non null integers such that opposite literals a represented by opposite values.
protected  IConstr addConstr(Constr constr)
           
 IConstr addPseudoBoolean(IVecInt literals, IVec<java.math.BigInteger> coeffs, boolean moreThan, java.math.BigInteger degree)
          Create a Pseudo-Boolean constraint of the type "at least n of those literals must be satisfied"
 int analyze(Constr confl, Handle<Constr> outLearntRef)
           
 boolean assume(int p)
           
protected  void cancelUntil(int level)
          Cancel several levels of assumptions
 void claBumpActivity(Constr confl)
          Propagate activity to a constraint
 void clearLearntClauses()
           
protected  void decayActivities()
           
 int decisionLevel()
           
static int decode2dimacs(int p)
          decode the internal representation of a literal into Dimacs format.
protected  IVecInt dimacs2internal(IVecInt in)
           
 boolean enqueue(int p)
          Satisfait un litt?
 boolean enqueue(int p, Constr from)
          Put the literal on the queue of assignments to be done.
 int[] findModel()
          Look for a model satisfying all the clauses available in the problem.
 int[] findModel(IVecInt assumps)
          Look for a model satisfying all the clauses available in the problem.
 DataStructureFactory<L> getDSFactory()
           
 IConstr getIthConstr(int i)
          returns the ith constraint in the solver.
 IOrder<L> getOrder()
           
 IVecInt getOutLearnt()
           
 java.util.Map<java.lang.String,java.lang.Number> getStat()
          To obtain a map of the available statistics from the solver.
 SolverStats getStats()
           
 int getTimeout()
          Useful to check the internal timeout of the solver.
 L getVocabulary()
           
 boolean isSatisfiable()
          Check the satisfiability of the set of constraints contained inside the solver.
 boolean isSatisfiable(IVecInt assumps)
          Check the satisfiability of the set of constraints contained inside the solver.
 void learn(Constr c)
           
 int[] model()
          Si un mod?
 boolean model(int var)
          Provide the truth value of a specific variable in the model.
protected  int nAssigns()
           
 int nConstraints()
          To know the number of constraints currently available in the solver.
 int newVar()
          Create a new variable in the solver (and thus in the vocabulary).
 int newVar(int howmany)
          Create howmany variables in the solver (and thus in the vocabulary).
 int nVars()
          To know the number of variables used in the solver.
 void printStat(java.io.PrintStream out, java.lang.String prefix)
          Display statistics to the given output stream Please use writers instead of stream.
 void printStat(java.io.PrintWriter out, java.lang.String prefix)
          Display statistics to the given output writer
 Constr propagate()
           
protected  void reduceDB()
           
protected  void reduceDB(double lim)
           
 boolean removeConstr(IConstr co)
          Remove a constraint returned by one of the add method from the solver.
 void reset()
          Clean up the internal state of the solver.
 void setDataStructureFactory(DataStructureFactory<L> dsf)
          Change the internal representation of the contraints.
 void setExpectedNumberOfClauses(int nb)
          To inform the solver of the expected number of clauses to read.
 void setOrder(IOrder<L> h)
           
 void setRestartStrategy(RestartStrategy restarter)
           
 void setSearchListener(SearchListener sl)
           
 void setSearchParams(SearchParams sp)
           
 void setSimplifier(org.sat4j.minisat.core.Solver.ISimplifier simp)
          Setup the reason simplification strategy.
 void setSimplifier(java.lang.String simp)
          Setup the reason simplification strategy.
 void setTimeout(int t)
          To set the internal timeout of the solver.
 void setTimeoutMs(long t)
          To set the internal timeout of the solver.
 boolean simplifyDB()
           
 java.lang.String toString()
           
 java.lang.String toString(java.lang.String prefix)
          Display a textual representation of the solver configuration.
protected  void undoOne()
           
 void varBumpActivity(int p)
          Update the activity of a variable v.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

trail

protected final IVecInt trail
affectation en ordre chronologique


trailLim

protected final IVecInt trailLim
indice des s?parateurs des diff?rents niveau de d?cision dans trail


rootLevel

protected int rootLevel
S?pare les hypoth?ses incr?mentale et recherche


voc

protected L extends ILits voc

analyzer

protected final AssertingClauseGenerator analyzer

dsfactory

protected DataStructureFactory<L extends ILits> dsfactory

NO_SIMPLIFICATION

public static final org.sat4j.minisat.core.Solver.ISimplifier NO_SIMPLIFICATION

SIMPLE_SIMPLIFICATION

public final org.sat4j.minisat.core.Solver.ISimplifier SIMPLE_SIMPLIFICATION

EXPENSIVE_SIMPLIFICATION

public final org.sat4j.minisat.core.Solver.ISimplifier EXPENSIVE_SIMPLIFICATION
Constructor Detail

Solver

public Solver(AssertingClauseGenerator acg,
              LearningStrategy<L> learner,
              DataStructureFactory<L> dsf,
              IOrder<L> order,
              RestartStrategy restarter)
creates a Solver without LearningListener. A learningListener must be added to the solver, else it won't backtrack!!! A data structure factory must be provided, else it won't work either.

Parameters:
acg - an asserting clause generator

Solver

public Solver(AssertingClauseGenerator acg,
              LearningStrategy<L> learner,
              DataStructureFactory<L> dsf,
              SearchParams params,
              IOrder<L> order,
              RestartStrategy restarter)
Method Detail

dimacs2internal

protected IVecInt dimacs2internal(IVecInt in)

setDataStructureFactory

public final void setDataStructureFactory(DataStructureFactory<L> dsf)
Change the internal representation of the contraints. Note that the heuristics must be changed prior to calling that method.

Parameters:
dsf - the internal factory

setSearchListener

public void setSearchListener(SearchListener sl)

setTimeout

public void setTimeout(int t)
Description copied from interface: ISolver
To set the internal timeout of the solver. When the timeout is reached, a timeout exception is launched by the solver.

Specified by:
setTimeout in interface ISolver
Parameters:
t - the timeout (in s)

setTimeoutMs

public void setTimeoutMs(long t)
Description copied from interface: ISolver
To set the internal timeout of the solver. When the timeout is reached, a timeout exception is launched by the solver.

Specified by:
setTimeoutMs in interface ISolver
Parameters:
t - the timeout (in milliseconds)

setSearchParams

public void setSearchParams(SearchParams sp)

setRestartStrategy

public void setRestartStrategy(RestartStrategy restarter)

nAssigns

protected int nAssigns()

nConstraints

public int nConstraints()
Description copied from interface: IProblem
To know the number of constraints currently available in the solver. (without taking into account learnt constraints).

Specified by:
nConstraints in interface IProblem
Returns:
the number of contraints added to the solver

learn

public void learn(Constr c)
Specified by:
learn in interface Learner

decisionLevel

public int decisionLevel()

newVar

public int newVar()
Description copied from interface: ISolver
Create a new variable in the solver (and thus in the vocabulary). WE STRONGLY ENCOURAGE TO PRECOMPUTE THE NUMBER OF VARIABLES NEEDED AND TO USE newVar(howmany) INSTEAD. IF YOU EXPERIENCE A PROBLEM OF EFFICIENCY WHEN READING/BUILDING YOUR SAT INSTANCE, PLEASE CHECK THAT YOU ARE NOT USING THAT METHOD.

Specified by:
newVar in interface ISolver
Returns:
the number of variables available in the vocabulary, which is the identifier of the new variable.

newVar

public int newVar(int howmany)
Description copied from interface: ISolver
Create howmany variables in the solver (and thus in the vocabulary).

Specified by:
newVar in interface ISolver
Parameters:
howmany - number of variables to create
Returns:
the total number of variables available in the solver (the highest variable number)

addClause

public IConstr addClause(IVecInt literals)
                  throws ContradictionException
Description copied from interface: ISolver
Create a clause from a set of literals The literals are represented by non null integers such that opposite literals a represented by opposite values. (clasical Dimacs way of representing literals).

Specified by:
addClause in interface ISolver
Parameters:
literals - a set of literals
Returns:
a reference to the constraint added in the solver, to use in removeConstr().
Throws:
ContradictionException - iff the vector of literals is empty or if it contains only falsified literals after unit propagation
See Also:
ISolver.removeConstr(IConstr)

removeConstr

public boolean removeConstr(IConstr co)
Description copied from interface: ISolver
Remove a constraint returned by one of the add method from the solver. All learnt clauses will be cleared.

Specified by:
removeConstr in interface ISolver
Parameters:
co - a constraint returned by one of the add method.
Returns:
true if the constraint was sucessfully removed.

addPseudoBoolean

public IConstr addPseudoBoolean(IVecInt literals,
                                IVec<java.math.BigInteger> coeffs,
                                boolean moreThan,
                                java.math.BigInteger degree)
                         throws ContradictionException
Description copied from interface: ISolver
Create a Pseudo-Boolean constraint of the type "at least n of those literals must be satisfied"

Specified by:
addPseudoBoolean in interface ISolver
Parameters:
literals - a set of literals. The vector can be reused since the solver is not supposed to keep a reference to that vector.
coeffs - the coefficients of the literals. The vector can be reused since the solver is not supposed to keep a reference to that vector.
moreThan - true if it is a constraint >= degree
degree - the degree of the cardinality constraint
Returns:
a reference to the constraint added in the solver, to use in removeConstr().
Throws:
ContradictionException - iff the vector of literals is empty or if the constraint is falsified after unit propagation
See Also:
ISolver.removeConstr(IConstr)

addAllClauses

public void addAllClauses(IVec<IVecInt> clauses)
                   throws ContradictionException
Description copied from interface: ISolver
Create clauses from a set of set of literals. This is convenient to create in a single call all the clauses (mandatory for the distributed version of the solver). It is mainly a loop to addClause().

Specified by:
addAllClauses in interface ISolver
Parameters:
clauses - a vector of set (VecInt) of literals in the dimacs format. The vector can be reused since the solver is not supposed to keep a reference to that vector.
Throws:
ContradictionException - iff the vector of literals is empty or if it contains only falsified literals after unit propagation
See Also:
ISolver.addClause(IVecInt)

addAtMost

public IConstr addAtMost(IVecInt literals,
                         int degree)
                  throws ContradictionException
Description copied from interface: ISolver
Create a cardinality constraint of the type "at most n of those literals must be satisfied"

Specified by:
addAtMost in interface ISolver
Parameters:
literals - a set of literals The vector can be reused since the solver is not supposed to keep a reference to that vector.
degree - the degree of the cardinality constraint
Returns:
a reference to the constraint added in the solver, to use in removeConstr().
Throws:
ContradictionException - iff the vector of literals is empty or if it contains more than degree satisfied literals after unit propagation
See Also:
ISolver.removeConstr(IConstr)

addAtLeast

public IConstr addAtLeast(IVecInt literals,
                          int degree)
                   throws ContradictionException
Description copied from interface: ISolver
Create a cardinality constraint of the type "at least n of those literals must be satisfied"

Specified by:
addAtLeast in interface ISolver
Parameters:
literals - a set of literals. The vector can be reused since the solver is not supposed to keep a reference to that vector.
degree - the degree of the cardinality constraint
Returns:
a reference to the constraint added in the solver, to use in removeConstr().
Throws:
ContradictionException - iff the vector of literals is empty or if degree literals are not remaining unfalsified after unit propagation
See Also:
ISolver.removeConstr(IConstr)

simplifyDB

public boolean simplifyDB()

model

public int[] model()
Si un mod?le est trouv?, ce vecteur contient le mod?le.

Specified by:
model in interface IProblem
Returns:
un mod?le de la formule.
See Also:
IProblem.isSatisfiable(), IProblem.isSatisfiable(IVecInt)

enqueue

public boolean enqueue(int p)
Satisfait un litt?ral

Specified by:
enqueue in interface UnitPropagationListener
Parameters:
p - le litt?ral
Returns:
true si tout se passe bien, false si un conflit appara?t.

enqueue

public boolean enqueue(int p,
                       Constr from)
Put the literal on the queue of assignments to be done.

Specified by:
enqueue in interface UnitPropagationListener
Parameters:
p - the literal.
from - the reason to propagate that literal, else null
Returns:
true if the asignment can be made, false if a conflict is detected.

analyze

public int analyze(Constr confl,
                   Handle<Constr> outLearntRef)

setSimplifier

public void setSimplifier(java.lang.String simp)
Setup the reason simplification strategy. By default, there is no reason simplification. NOTE THAT REASON SIMPLIFICATION IS ONLY ALLOWED FOR WL CLAUSAL data structures. USING REASON SIMPLIFICATION ON CB CLAUSES, CARDINALITY CONSTRAINTS OR PB CONSTRAINTS MIGHT RESULT IN INCORRECT RESULTS.

Parameters:
simp - the name of the simplifier (one of NO_SIMPLIFICATION, SIMPLE_SIMPLIFICATION, EXPENSIVE_SIMPLIFICATION).

setSimplifier

public void setSimplifier(org.sat4j.minisat.core.Solver.ISimplifier simp)
Setup the reason simplification strategy. By default, there is no reason simplification. NOTE THAT REASON SIMPLIFICATION IS ONLY ALLOWED FOR WL CLAUSAL data structures. USING REASON SIMPLIFICATION ON CB CLAUSES, CARDINALITY CONSTRAINTS OR PB CONSTRAINTS MIGHT RESULT IN INCORRECT RESULTS.

Parameters:
simp -

decode2dimacs

public static int decode2dimacs(int p)
decode the internal representation of a literal into Dimacs format.

Parameters:
p - the literal in internal representation
Returns:
the literal in dimacs representation

undoOne

protected void undoOne()

claBumpActivity

public void claBumpActivity(Constr confl)
Propagate activity to a constraint

Parameters:
confl - a constraint

varBumpActivity

public void varBumpActivity(int p)
Description copied from interface: VarActivityListener
Update the activity of a variable v.

Parameters:
p - a literal (v<<1 or v<<1^1)

propagate

public Constr propagate()
Returns:
null if not conflict is found, else a conflicting constraint.

assume

public boolean assume(int p)
Returns:
false ssi conflit imm?diat.

cancelUntil

protected void cancelUntil(int level)
Cancel several levels of assumptions

Parameters:
level -

model

public boolean model(int var)
Description copied from interface: IProblem
Provide the truth value of a specific variable in the model. That method should be called AFTER isSatisfiable() if the formula is satisfiable. Else an exception UnsupportedOperationException is launched.

Specified by:
model in interface IProblem
Parameters:
var - the variable id in Dimacs format
Returns:
the truth value of that variable in the model
See Also:
IProblem.model()

reduceDB

protected void reduceDB()

clearLearntClauses

public void clearLearntClauses()
Specified by:
clearLearntClauses in interface ISolver

reduceDB

protected void reduceDB(double lim)

decayActivities

protected void decayActivities()

isSatisfiable

public boolean isSatisfiable()
                      throws TimeoutException
Description copied from interface: IProblem
Check the satisfiability of the set of constraints contained inside the solver.

Specified by:
isSatisfiable in interface IProblem
Returns:
true iff the set of constraints is satisfiable, else false.
Throws:
TimeoutException

isSatisfiable

public boolean isSatisfiable(IVecInt assumps)
                      throws TimeoutException
Description copied from interface: IProblem
Check the satisfiability of the set of constraints contained inside the solver.

Specified by:
isSatisfiable in interface IProblem
Parameters:
assumps - a set of literals (represented by usual non null integers in Dimacs format).
Returns:
true if the set of constraints is satisfiable when literals are satisfied, else false.
Throws:
TimeoutException

getStats

public SolverStats getStats()

getOrder

public IOrder<L> getOrder()

setOrder

public void setOrder(IOrder<L> h)

getVocabulary

public L getVocabulary()

reset

public void reset()
Description copied from interface: ISolver
Clean up the internal state of the solver.

Specified by:
reset in interface ISolver

nVars

public int nVars()
Description copied from interface: IProblem
To know the number of variables used in the solver.

Specified by:
nVars in interface IProblem
Returns:
the number of variables created using newVar().

addConstr

protected IConstr addConstr(Constr constr)
Parameters:
constr - a constraint implementing the Constr interface.
Returns:
a reference to the constraint for external use.

getDSFactory

public DataStructureFactory<L> getDSFactory()

getOutLearnt

public IVecInt getOutLearnt()

getIthConstr

public IConstr getIthConstr(int i)
returns the ith constraint in the solver.

Parameters:
i - the constraint number (begins at 0)
Returns:
the ith constraint

printStat

public void printStat(java.io.PrintStream out,
                      java.lang.String prefix)
Description copied from interface: ISolver
Display statistics to the given output stream Please use writers instead of stream.

Specified by:
printStat in interface ISolver
prefix - the prefix to put in front of each line
See Also:
ISolver.printStat(PrintWriter, String)

printStat

public void printStat(java.io.PrintWriter out,
                      java.lang.String prefix)
Description copied from interface: ISolver
Display statistics to the given output writer

Specified by:
printStat in interface ISolver
prefix - the prefix to put in front of each line

toString

public java.lang.String toString(java.lang.String prefix)
Description copied from interface: ISolver
Display a textual representation of the solver configuration.

Specified by:
toString in interface ISolver
Parameters:
prefix - the prefix to use on each line.
Returns:
a textual description of the solver internals.

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

getTimeout

public int getTimeout()
Description copied from interface: ISolver
Useful to check the internal timeout of the solver.

Specified by:
getTimeout in interface ISolver
Returns:
the internal timeout of the solver (in second)

setExpectedNumberOfClauses

public void setExpectedNumberOfClauses(int nb)
Description copied from interface: ISolver
To inform the solver of the expected number of clauses to read. This is an optional method, that is called when the p cnf line is read in dimacs formatted input file.

Specified by:
setExpectedNumberOfClauses in interface ISolver
Parameters:
nb - the expected number of clauses.

getStat

public java.util.Map<java.lang.String,java.lang.Number> getStat()
Description copied from interface: ISolver
To obtain a map of the available statistics from the solver. Note that some keys might be specific to some solvers.

Specified by:
getStat in interface ISolver
Returns:
a Map with the name of the statistics as key.

findModel

public int[] findModel()
                throws TimeoutException
Description copied from interface: IProblem
Look for a model satisfying all the clauses available in the problem. It is an alternative to isSatisfiable() and model() methods, as shown in the pseudo-code: if (isSatisfiable()) { return model(); } return null;

Specified by:
findModel in interface IProblem
Returns:
a model of the formula as an array of literals to satisfy, or null if no model is found
Throws:
TimeoutException - if a model cannot be found within the given timeout.

findModel

public int[] findModel(IVecInt assumps)
                throws TimeoutException
Description copied from interface: IProblem
Look for a model satisfying all the clauses available in the problem. It is an alternative to isSatisfiable(IVecInt) and model() methods, as shown in the pseudo-code: if (isSatisfiable(assumpt)) { return model(); } return null;

Specified by:
findModel in interface IProblem
Returns:
a model of the formula as an array of literals to satisfy, or null if no model is found
Throws:
TimeoutException - if a model cannot be found within the given timeout.


Copyright © 2007 Centre de Recherche en Informatique de Lens (CRIL). All Rights Reserved.