* @param start startcontext
* @return found context
*/
private GameContext findNextContext(GameContext start) {
GameContext found = null;
BoardLocation loc = start.getLocation();
while (found == null) {
loc = getSuccessor(loc);
found = findContextByLocation(loc);
}
return found;