Class TuplesRankingReasoner
- java.lang.Object
-
- net.sf.tweety.arg.rankings.reasoner.AbstractRankingReasoner<LatticeArgumentRanking>
-
- net.sf.tweety.arg.rankings.reasoner.TuplesRankingReasoner
-
- All Implemented Interfaces:
ModelProvider<Argument,DungTheory,LatticeArgumentRanking>,PostulateEvaluatable<Argument>
public class TuplesRankingReasoner extends AbstractRankingReasoner<LatticeArgumentRanking>
This class implements the "tuples*" argument ranking approach as proposed by [Cayrol, Lagasquie-Schiex. Graduality in argumentation. 2005]. It takes into account all the ancestors branches of an arguument stored in tupled values. Some arguments are incomparable using this approach, i.e. it generates partial rankings.
Note: This implementation only works for acyclic argument graphs. For cyclic graphs null is returned.- Author:
- Anna Gessler
-
-
Constructor Summary
Constructors Constructor Description TuplesRankingReasoner()
-
Method Summary
Modifier and Type Method Description Pair<int[],int[]>computeTupledValue(Argument a, DungTheory kb)Computes the tupled value for the given argument.LatticeArgumentRankinggetModel(DungTheory kb)Returns a single (dedicated) model of the given belief base.java.util.Collection<LatticeArgumentRanking>getModels(DungTheory bbase)Returns a characterizing model of the given belief basejava.util.Map<Argument,Pair<int[],int[]>>getTupledValues()java.lang.StringprettyPrintTupledValues()Prints the tupled values computed by previous calls of getModel oder getModels in a human-readable way.
-
-
-
Method Detail
-
getModels
public java.util.Collection<LatticeArgumentRanking> getModels(DungTheory bbase)
Description copied from interface:ModelProviderReturns a characterizing model of the given belief base- Parameters:
bbase- some belief base- Returns:
- the (selected) models of the belief base
-
getModel
public LatticeArgumentRanking getModel(DungTheory kb)
Description copied from interface:ModelProviderReturns a single (dedicated) model of the given belief base. If the implemented method allows for more than one dedicated model, the selection may be non-deterministic.- Parameters:
kb- some belief base- Returns:
- a selected model of the belief base.
-
computeTupledValue
public Pair<int[],int[]> computeTupledValue(Argument a, DungTheory kb)
Computes the tupled value for the given argument.- Parameters:
a- an argumentkb- DungTheory- Returns:
- a pair that consists of the two tuples that represent the defense (first tuple) and attack (second tuple) branches of a.
-
getTupledValues
public java.util.Map<Argument,Pair<int[],int[]>> getTupledValues()
- Returns:
- the tupled values computed by previous calls of getModel oder getModels
-
prettyPrintTupledValues
public java.lang.String prettyPrintTupledValues()
Prints the tupled values computed by previous calls of getModel oder getModels in a human-readable way.- Returns:
- a string representation of the tuples
-
-