Package net.sf.tweety.arg.adf.sat
Interface SatSolverState
-
- All Superinterfaces:
AutoCloseable
public interface SatSolverState extends AutoCloseable
-
-
Method Summary
Modifier and Type Method Description booleanadd(Collection<net.sf.tweety.logics.pl.syntax.Disjunction> clauses)booleanadd(net.sf.tweety.logics.pl.syntax.Disjunction clause)longgetHandle()booleanisTrue(net.sf.tweety.logics.pl.syntax.Proposition p)booleanremove(net.sf.tweety.logics.pl.syntax.Disjunction clause)voidsetSatCalled()-
Methods inherited from interface java.lang.AutoCloseable
close
-
-
-
-
Method Detail
-
getHandle
long getHandle()
-
isTrue
boolean isTrue(net.sf.tweety.logics.pl.syntax.Proposition p)
-
add
boolean add(net.sf.tweety.logics.pl.syntax.Disjunction clause)
-
add
boolean add(Collection<net.sf.tweety.logics.pl.syntax.Disjunction> clauses)
-
remove
boolean remove(net.sf.tweety.logics.pl.syntax.Disjunction clause)
-
setSatCalled
void setSatCalled()
-
-