agent.getInstrumentation().getProperty("maxQueueSize"));
}
@Test
public void testCheckFrontierPathCost() throws Exception {
ExtendableMap map = new ExtendableMap();
map.addBidirectionalLink("start", "b", 2.5);
map.addBidirectionalLink("start", "c", 1.0);
map.addBidirectionalLink("b", "d", 2.0);
map.addBidirectionalLink("c", "d", 4.0);
map.addBidirectionalLink("c", "e", 1.0);
map.addBidirectionalLink("d", "goal", 1.0);
map.addBidirectionalLink("e", "goal", 5.0);
Problem problem = new Problem("start",
MapFunctionFactory.getActionsFunction(map),
MapFunctionFactory.getResultFunction(), new DefaultGoalTest(
"goal"), new MapStepCostFunction(map));