示例#1
0
        public static PerftResults RunPerft(Board boardBase, int depth)
        {
            var p = new Perft(boardBase);

            p.PerftCount(depth);
            return(p.Results);
        }
示例#2
0
文件: Perft.cs 项目: adh2050/Chess
 public static PerftResults RunPerft(Board boardBase, int depth)
 {
     var p = new Perft(boardBase);
     p.PerftCount(depth);
     return p.Results;
 }