//Whenever we try to iterate in the graph, we need to expand
//the no goods table to match the size of the graph
memoizationTable.ensureCapacity(planningGraph.size()/2);
if(this.planningGraph.getLastGraphLevel().accept(this)) {
this.planResult = new PlanResult(this.supportActionStack);
} else {
this.planResult = new PlanResult(false);
}
//logger.info("Table size is: "+noGoodTableSize());
//logger.info("Hits : "+hits);
//logger.info("Misses : "+misses);