Class ExtendedExampleFinder
java.lang.Object
org.tweetyproject.arg.dung.learning.ExtendedExampleFinder
This class can be used to find example dung theories that produce the same set of extensions wrt to two semantics,
but different extensions wrt to another semantics
- Author:
- Lars Bengel
-
Constructor Summary
ConstructorDescriptionExtendedExampleFinder
(AbstractExtensionReasoner reasoner1, AbstractExtensionReasoner reasoner2, AbstractExtensionReasoner reasoner3) initialize with three specific reasonersExtendedExampleFinder
(Semantics semantics1, Semantics semantics2, Semantics semantics3) initialize with three semantics and automatically find reasoners for them (if they exist) -
Method Summary
Modifier and TypeMethodDescriptionMap
<Collection<Extension<DungTheory>>, Map<Collection<Extension<DungTheory>>, Map<Collection<Extension<DungTheory>>, Collection<DungTheory>>>> getExamples
(int minArgs, int maxArgs) compute a tree like structure of examples.void
showExamples
(Collection<Extension<DungTheory>> extensions1, Collection<Extension<DungTheory>> extensions2) prints a theory for each set of extensions (of the third semantics) that can occur, given the set of extensions for the first and second semanticsvoid
prints an overview over all found examples
-
Constructor Details
-
ExtendedExampleFinder
-
ExtendedExampleFinder
public ExtendedExampleFinder(AbstractExtensionReasoner reasoner1, AbstractExtensionReasoner reasoner2, AbstractExtensionReasoner reasoner3) initialize with three specific reasoners- Parameters:
reasoner1
- a reasonerreasoner2
- a reasonerreasoner3
- a reasoner
-
-
Method Details
-
getExamples
public Map<Collection<Extension<DungTheory>>,Map<Collection<Extension<DungTheory>>, getExamplesMap<Collection<Extension<DungTheory>>, Collection<DungTheory>>>> (int minArgs, int maxArgs) compute a tree like structure of examples. The first layer is the set of extensions wrt. the first semantics. The second layer are all possibilities of extensions wrt the second semantics that can occur given the extensions of the first semantics- Parameters:
minArgs
- minimum number of arguments for the theoriesmaxArgs
- maximum number of arguments for the theories- Returns:
- a map with examples
-
showOverview
public void showOverview()prints an overview over all found examples -
showExamples
public void showExamples(Collection<Extension<DungTheory>> extensions1, Collection<Extension<DungTheory>> extensions2) prints a theory for each set of extensions (of the third semantics) that can occur, given the set of extensions for the first and second semantics- Parameters:
extensions1
- the set of extensions wrt the first semanticsextensions2
- the set of extensions wrt the second semantics
-