private static int GetNumberOfActions(string actions)
        {
            ActionsGenerator actionsGenerator = new ActionsGenerator(actions);

            return(actionsGenerator.Actions.Count);
        }
Example #2
0
        private static List <Action> GetAllPossibleActions(string fullPrologString)
        {
            ActionsGenerator actionsGenerator = new ActionsGenerator(fullPrologString);

            return(actionsGenerator.Actions);
        }