{
break;
}
List<Agent> agents = new ArrayList<Agent>();
Agent learner = new GDLAlgorithmAgent(my_role);
for(String role : all_roles)
{
agents.add(new GDLAlgorithmAgent(role));
}
algorithm.exploreFromEpisode(state, current_episode, agents, learner);
}
}