Inheritance: AIMA.Core.Agent.Impl.AbstractEnvironment
Example #1
0
 /**
  * Creates a scenario.
  * 
  * @param env
  *            a map-based environment. Note that the contained map must be
  *            of type {@link ExtendableMap}
  * @param agentMap
  *            a map reflecting the knowledge of the agent about the
  *            environment
  * @param agentLoc
  *            initial location of the agent
  */
 public Scenario(MapEnvironment env, Map agentMap, String agentLoc)
 {
     this.agentMap = agentMap;
     this.env = env;
     this.initAgentLoc = agentLoc;
 }
Example #2
0
 /**
  * Creates a scenario.
  *
  * @param env
  *            a map-based environment. Note that the contained map must be
  *            of type {@link ExtendableMap}
  * @param agentMap
  *            a map reflecting the knowledge of the agent about the
  *            environment
  * @param agentLoc
  *            initial location of the agent
  */
 public Scenario(MapEnvironment env, Map agentMap, String agentLoc)
 {
     this.agentMap     = agentMap;
     this.env          = env;
     this.initAgentLoc = agentLoc;
 }