Class TruthfulArgumentationAgent
java.lang.Object
org.tweetyproject.agents.Agent
org.tweetyproject.agents.dialogues.structured.SasAgent
org.tweetyproject.agents.dialogues.structured.TruthfulArgumentationAgent
This class models a truthful argumentation agent, i.e.
an agent that always brings forward all arguments he knows of.
- Author:
- Matthias Thimm
-
Constructor Summary
ConstructorDescriptionCreates a new (non-single-step) agent with the given (local) view and utility function.TruthfulArgumentationAgent
(StructuredArgumentationFramework view, UtilityFunction utility, boolean isSingleStep) Creates a new agent with the given (local) view and utility function. -
Method Summary
Modifier and TypeMethodDescriptionnext
(Collection<? extends Perceivable> percepts) Determines the next action of this agent wrt.Methods inherited from class org.tweetyproject.agents.dialogues.structured.SasAgent
isSingleStep, rank
-
Constructor Details
-
TruthfulArgumentationAgent
Creates a new (non-single-step) agent with the given (local) view and utility function.- Parameters:
view
- the view of the agent on the argumentation.utility
- a utility function.
-
TruthfulArgumentationAgent
public TruthfulArgumentationAgent(StructuredArgumentationFramework view, UtilityFunction utility, boolean isSingleStep) Creates a new agent with the given (local) view and utility function.- Parameters:
view
- the view of the agent on the argumentation.utility
- a utility function.isSingleStep
- indicates whether this agent is a single-step argumentation agent, i.e. whether he may bring forward only one argument at a time or multiple.
-
-
Method Details