private Action decide(Observation observation)
{
String obs_str = new String(observation.charArray);
GDLState state = new GDLState(reasoner,obs_str);
Set<RAction> legalActions = state.legalActions(my_role);
if(legalActions.isEmpty())
{
System.out.println("no legal action for me in this state : " + state);
}