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

actions() private method

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