Ejemplo n.º 1
0
 private static Node initialState2()
 {
     Hanoi.Node init = new Hanoi.Node();
     init.Depth  = 0;
     init.Parent = null;
     init.Action = null;
     init.State  = new Hanoi.State(new int[] { 3, 2, 1, 0 }, new int[] { }, new int[] { });
     return(init);
 }