Uses of Class
ai.worlds.Agent

Packages that use Agent
ai.worlds   
ai.worlds.vacuum   
ai.worlds.wumpus   
 

Uses of Agent in ai.worlds
 

Fields in ai.worlds declared as Agent
 Agent[] Environment.agents
          The agents within the environment.
 

Methods in ai.worlds with parameters of type Agent
abstract  java.lang.Object Environment.getPercept(Agent a)
          Get the current percept.
abstract  int Environment.performanceMeasure(Agent a)
          Score the performance of the agent.
 

Constructors in ai.worlds with parameters of type Agent
GridEnvironment(Agent[] a, int xsize, int ysize, javax.swing.JFrame f)
           
 

Uses of Agent in ai.worlds.vacuum
 

Subclasses of Agent in ai.worlds.vacuum
 class RandomVacuumAgent
          A vacuum agent that simply chooses actions at random
 class ReactiveVacuumAgent
          A vacuum agent which reacts to its percepts.
 class VacuumAgent
          A generic vacuum agent.
 

Methods in ai.worlds.vacuum with parameters of type Agent
 java.lang.Object VacuumWorld.getPercept(Agent a)
          Get the next percept.
 int VacuumWorld.performanceMeasure(Agent a)
          Determine performance of the agent.
 

Constructors in ai.worlds.vacuum with parameters of type Agent
VacuumWorld(Agent[] a, int xsize, int ysize, double probDirt, javax.swing.JFrame f)
           
 

Uses of Agent in ai.worlds.wumpus
 

Subclasses of Agent in ai.worlds.wumpus
 class AimlessWumpusAgent
          A Wumpus agent which moves aimlessly.
 class LogicTestingAgent
          A wumpus agent which can be used to test your knowledge base.
 class RandomWumpusAgent
          A wumpus agent that takes actions randomly.
 class WumpusAgent
          A generic wumpus agent.
 

Methods in ai.worlds.wumpus with parameters of type Agent
 int WumpusWorld.performanceMeasure(Agent a)
           
 java.lang.Object WumpusWorld.getPercept(Agent a)
          Get the agent percept.
 

Constructors in ai.worlds.wumpus with parameters of type Agent
WumpusWorld(Agent[] a, int xsize, int ysize, javax.swing.JFrame f)
           
WumpusWorld(Agent[] a, int xsize, int ysize, javax.swing.JFrame f, java.lang.String filename)