Пример #1
0
 private HashSet <Action> actions(object state)
 {
     return(problem.getActionsFunction().actions(state));
 }
Пример #2
0
 private List <Action> actions(object state)
 {
     return(new List <Action>(problem.getActionsFunction()
                              .actions(state)));
 }