Uses of Interface
net.sf.tweety.agents.sim.AgentGenerator
-
Packages that use AgentGenerator Package Description net.sf.tweety.agents.dialogues.lotteries.sim net.sf.tweety.agents.dialogues.oppmodels.sim net.sf.tweety.agents.sim -
-
Uses of AgentGenerator in net.sf.tweety.agents.dialogues.lotteries.sim
Classes in net.sf.tweety.agents.dialogues.lotteries.sim that implement AgentGenerator Modifier and Type Class Description class
DummyAgentGenerator
Generates dummy lottery agents.class
ProbabilisticLotteryAgentGenerator
Generates lottery agents.class
RandomLotteryAgentGenerator
Generates baseline lottery agents.class
UtilityBasedAgentGenerator
Generates baseline lottery agents. -
Uses of AgentGenerator in net.sf.tweety.agents.dialogues.oppmodels.sim
Classes in net.sf.tweety.agents.dialogues.oppmodels.sim that implement AgentGenerator Modifier and Type Class Description class
GroundedGameAgentGenerator
Generates new arguing agents for a grounded game.class
GroundedGameT1AgentGenerator
Generates agents of type T1.class
GroundedGameT2AgentGenerator
Generates agents of type T2.class
GroundedGameT3AgentGenerator
Generates agents of type T3. -
Uses of AgentGenerator in net.sf.tweety.agents.sim
Methods in net.sf.tweety.agents.sim with parameters of type AgentGenerator Modifier and Type Method Description void
SimulationResult. addEntry(AgentGenerator<T,R> winner, java.util.Map<AgentGenerator<T,R>,java.lang.Double> utilities)
Adds a new entry of a simulation run.Method parameters in net.sf.tweety.agents.sim with type arguments of type AgentGenerator Modifier and Type Method Description void
SimulationResult. addEntry(AgentGenerator<T,R> winner, java.util.Map<AgentGenerator<T,R>,java.lang.Double> utilities)
Adds a new entry of a simulation run.Constructor parameters in net.sf.tweety.agents.sim with type arguments of type AgentGenerator Constructor Description GameSimulator(MultiAgentSystemGenerator<T,R> masGenerator, ProtocolGenerator<S,T,R> protGenerator, java.util.List<AgentGenerator<T,R>> agentGenerators)
Creates a new GameSimulator for the given MultiAgentSystemGenerator and AgentGenerators.SimulationResult(java.util.List<AgentGenerator<T,R>> agentGenerators)
Creates a new SimulationResult for the given set of agent generators.
-