Example #1
0
File: Solver.cs Project: MOAAS/IART
        public int Heuristic4(ZhedBoard board)
        {
            if (board.isOver)
            {
                return(0);
            }
            int a = (int)(1000 / board.getBoardTotalMaxValue());

            //Console.WriteLine(a);
            return(a);
        }