use of aima.core.environment.xyenv.XYEnvironment in project aima-java by aimacode.
the class XYEnvironmentTest method setUp.
@Before
public void setUp() {
env = new XYEnvironment(10, 12);
a = new MockAgent();
env.addObjectToLocation(a, new XYLocation(3, 4));
}
Aggregations