AIMA.Core.Search.Online.OnlineDFSAgent.actions C# (CSharp) 메소드

actions() 개인적인 메소드

private actions ( Object state ) : List
state Object
리턴 List
        private List<Action> actions(Object state)
        {
            return new List<Action>(problem.getActionsFunction()
                    .actions(state));
        }
    }