Class OvercautiousArgumentationAgent
java.lang.Object
org.tweetyproject.agents.Agent
org.tweetyproject.agents.dialogues.structured.SasAgent
org.tweetyproject.agents.dialogues.structured.OvercautiousArgumentationAgent
- Direct Known Subclasses:
CautiousArgumentationAgent
This class models an overcautious argumentation agent, i.e.
an agent that only brings forward arguments that cannot be harmful
to this agent's goal of proving some given proposition.
- Author:
- Matthias Thimm
-
Constructor Summary
ConstructorDescriptionOvercautiousArgumentationAgent
(StructuredArgumentationFramework view, UtilityFunction utility, boolean isSingleStep, Proposition focalElement) Creates a new agent with the given (local) view and utility function.OvercautiousArgumentationAgent
(StructuredArgumentationFramework view, UtilityFunction utility, Proposition focalElement) Creates a new (non-single-step) 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
-
OvercautiousArgumentationAgent
public OvercautiousArgumentationAgent(StructuredArgumentationFramework view, UtilityFunction utility, Proposition focalElement) 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.focalElement
- the focal element of this agent.
-
OvercautiousArgumentationAgent
public OvercautiousArgumentationAgent(StructuredArgumentationFramework view, UtilityFunction utility, boolean isSingleStep, Proposition focalElement) 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.focalElement
- the focal element of this agent.
-
-
Method Details