AIMA.Core.Search.Online.OnlineDFSAgent.actions C# (CSharp) Method

actions() private method

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