Class SeeAcceptabilityReasoner
java.lang.Object
org.tweetyproject.arg.dung.reasoner.AbstractDungReasoner
org.tweetyproject.arg.dung.reasoner.AbstractAcceptabilityReasoner
org.tweetyproject.arg.dung.reasoner.SeeAcceptabilityReasoner
- All Implemented Interfaces:
QualitativeReasoner<DungTheory,
,Argument> Reasoner<Boolean,
DungTheory, Argument>
Implements the SEE approach ("selective extension enumeration") to
determine the set of acceptable arguments of an AF
wrt. complete/preferred/stable semantics and credulous reasoning and wrt.
stable semantics and skeptical reasoning , cf. [Thimm, Cerutti, Vallati; COMMA 2020].
It iteratively calls a SAT solver to discover new acceptable arguments.
- Author:
- Matthias Thimm
-
Constructor Summary
ConstructorDescriptionSeeAcceptabilityReasoner
(SatSolver satSolver, Semantics semantics, InferenceMode inferenceMode) Creates a new IaqAcceptabilityReasoner. -
Method Summary
Modifier and TypeMethodDescriptionReturns the set of acceptable arguments of this reasoner.boolean
the solver is natively installed and is therefore always installedMethods inherited from class org.tweetyproject.arg.dung.reasoner.AbstractAcceptabilityReasoner
query
-
Constructor Details
-
SeeAcceptabilityReasoner
public SeeAcceptabilityReasoner(SatSolver satSolver, Semantics semantics, InferenceMode inferenceMode) Creates a new IaqAcceptabilityReasoner.- Parameters:
satSolver
- some SatSolver.semantics
- either Semantics.CO, Semantics.PR, or Semantics.STinferenceMode
- either InferenceMode.CREDULOUS or InferenceMode.SKEPTICAL (only stable semantics)
-
-
Method Details
-
getAcceptableArguments
Description copied from class:AbstractAcceptabilityReasoner
Returns the set of acceptable arguments of this reasoner.- Specified by:
getAcceptableArguments
in classAbstractAcceptabilityReasoner
- Parameters:
aaf
- some AAF- Returns:
- the set of acceptable arguments of this reasoner.
-
isInstalled
public boolean isInstalled()the solver is natively installed and is therefore always installed- Returns:
- if the solver is installed
-