Package net.sf.tweety.arg.adf.sat
Interface SatSolverState
-
- All Superinterfaces:
java.lang.AutoCloseable
- All Known Implementing Classes:
NativeLingelingSolver.LingelingSolverState
public interface SatSolverState extends java.lang.AutoCloseable
-
-
Method Summary
Modifier and Type Method Description booleanadd(java.util.Collection<Disjunction> clauses)booleanadd(Disjunction clause)longgetHandle()booleanisTrue(Proposition p)booleanremove(Disjunction clause)voidsetSatCalled()
-
-
-
Method Detail
-
getHandle
long getHandle()
-
isTrue
boolean isTrue(Proposition p)
-
add
boolean add(Disjunction clause)
-
add
boolean add(java.util.Collection<Disjunction> clauses)
-
remove
boolean remove(Disjunction clause)
-
setSatCalled
void setSatCalled()
-
-