Class T3BeliefState
- java.lang.Object
-
- net.sf.tweety.agents.dialogues.oppmodels.BeliefState
-
- net.sf.tweety.agents.dialogues.oppmodels.T3BeliefState
-
- All Implemented Interfaces:
java.lang.Comparable<T3BeliefState>
public class T3BeliefState extends BeliefState implements java.lang.Comparable<T3BeliefState>
This belief state consists of a probability distribution over other opponent models with virtual arguments.- Author:
- Tjitze Rienstra, Matthias Thimm
-
-
Field Summary
Fields Modifier and Type Field Description private ProbabilityFunction<T3BeliefState>probThe probability function on opponent modelsprivate RecognitionFunctionrecThe recognition function for recognizing ordinary arguments.private java.util.Set<Argument>virtualArgumentsThe set of virtual arguments assumed to exist.private java.util.Set<Attack>virtualAttacksThe set of virtual attacks assumed to exist between virtual and ordinary arguments.
-
Constructor Summary
Constructors Constructor Description T3BeliefState(Extension knownArguments, UtilityFunction<Argument,Extension> utilityFunction, java.util.Set<Argument> virtualArguments, java.util.Set<Attack> virtualAttacks, RecognitionFunction rec, ProbabilityFunction<T3BeliefState> prob)Creates a new T3-belief-state with the given parameters.
-
Method Summary
Modifier and Type Method Description java.lang.Objectclone()intcompareTo(T3BeliefState arg0)java.lang.Stringdisplay()Pretty print of this belief state.private java.lang.Stringdisplay(int indent)Aux method for pretty print();protected Pair<java.lang.Double,java.util.Set<ExecutableExtension>>doMove(ArgumentationEnvironment env, DialogueTrace<Argument,Extension> trace)Gives the set of all best next moves with their expected utility according to the belief state and the given trace.booleanequals(java.lang.Object obj)inthashCode()T2BeliefStateprojectToT2BeliefState()Returns a T2-belief state that is a projection of this belief state, i.e.voidupdate(DialogueTrace<Argument,Extension> trace)Updates the current belief state accordingly to the given dialogue trace.-
Methods inherited from class net.sf.tweety.agents.dialogues.oppmodels.BeliefState
getKnownArguments, getLegalMoves, getUtilityFunction, move
-
-
-
-
Field Detail
-
virtualArguments
private java.util.Set<Argument> virtualArguments
The set of virtual arguments assumed to exist.
-
virtualAttacks
private java.util.Set<Attack> virtualAttacks
The set of virtual attacks assumed to exist between virtual and ordinary arguments.
-
rec
private RecognitionFunction rec
The recognition function for recognizing ordinary arguments.
-
prob
private ProbabilityFunction<T3BeliefState> prob
The probability function on opponent models
-
-
Constructor Detail
-
T3BeliefState
public T3BeliefState(Extension knownArguments, UtilityFunction<Argument,Extension> utilityFunction, java.util.Set<Argument> virtualArguments, java.util.Set<Attack> virtualAttacks, RecognitionFunction rec, ProbabilityFunction<T3BeliefState> prob)
Creates a new T3-belief-state with the given parameters.- Parameters:
knownArguments- the set of arguments known by the agent.utilityFunction- the utility function of the agent.virtualArguments- the set of virtual argumentsvirtualAttacks- the set of virtual attacksrec- the recognition functionprob- the probability function over opponent models.
-
-
Method Detail
-
update
public void update(DialogueTrace<Argument,Extension> trace)
Description copied from class:BeliefStateUpdates the current belief state accordingly to the given dialogue trace.- Specified by:
updatein classBeliefState- Parameters:
trace- a dialogue trace
-
doMove
protected Pair<java.lang.Double,java.util.Set<ExecutableExtension>> doMove(ArgumentationEnvironment env, DialogueTrace<Argument,Extension> trace)
Description copied from class:BeliefStateGives the set of all best next moves with their expected utility according to the belief state and the given trace.- Specified by:
doMovein classBeliefState- Parameters:
env- the environment (gives access to the current trace)trace- the dialogue trace.- Returns:
- the set of all best next moves with their expected utility
-
projectToT2BeliefState
public T2BeliefState projectToT2BeliefState()
Returns a T2-belief state that is a projection of this belief state, i.e. all virtual arguments and virtual attacks are removed from all nested models.- Returns:
- the T2-projection of this belief state.
-
clone
public java.lang.Object clone()
- Specified by:
clonein classBeliefState
-
display
public java.lang.String display()
Description copied from class:BeliefStatePretty print of this belief state.- Specified by:
displayin classBeliefState- Returns:
- a string representation of this state.
-
display
private java.lang.String display(int indent)
Aux method for pretty print();- Parameters:
indent- indentation for display, depending on recursion depth- Returns:
- a string representation of this state.
-
hashCode
public int hashCode()
- Overrides:
hashCodein classBeliefState
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classBeliefState
-
compareTo
public int compareTo(T3BeliefState arg0)
- Specified by:
compareToin interfacejava.lang.Comparable<T3BeliefState>
-
-