Ejemplo n.º 1
0
 private HashSet <Action> actions(object state)
 {
     return(problem.getActionsFunction().actions(state));
 }
Ejemplo n.º 2
0
 private List <Action> actions(object state)
 {
     return(new List <Action>(problem.getActionsFunction()
                              .actions(state)));
 }