Exemple #1
0
        ActionsCollection maxiMaxOp(int state)
        {
            var arr = new ActionsCollection();

            arr.Add(plus2);
            arr.Add(plus3);
            return(arr);
        }
Exemple #2
0
        private ActionsCollection OpsDifferentCosts(int state)
        {
            var arr = new ActionsCollection();

            arr.Add(plus1cost2);
            arr.Add(plus3Cost3);
            return(arr);
        }
Exemple #3
0
        ActionsCollection miniMaxOps(int state)
        {
            var arr = new ActionsCollection();

            arr.Add(plus1);
            arr.Add(plus3);
            return(arr);
        }