package net.ciklum.icfpc11.controller.ai /** * Memory-managed Strategy - AI will manage its used Slots :) * so that used slots won't be allocated again. * @author vic */ @Typed public interface StrategyUsingSlots extends Strategy { List getUsedSlots() }