Ejemplo n.º 1
0
        public void GivenNoHeuristic_ShouldBuildBigGraph()
        {
            var map2D        = new Map2D(14, 14);
            var goalPosition = map2D.Tiles[11, 12];
            var pathFinder   = new PathFinder <Tile>(delegate { return(0); }, 14 * 14, map2D.IndexMap(), map2D.NeighboursManhattan());

            var graph = pathFinder.BuildGraph(map2D.Tiles[0, 2], goalPosition);

            Assert.AreEqual(192, graph.Count(x => x != null));
        }
Ejemplo n.º 2
0
        public void GivenValidHeuristic_ShouldBuildSmallerGraph()
        {
            var map2D        = new Map2D(14, 14);
            var goalPosition = map2D.Tiles[11, 12];
            var pathFinder   = new PathFinder <Tile>(_heuristic, 14 * 14, map2D.IndexMap(), map2D.NeighboursManhattan());

            var graph = pathFinder.BuildGraph(map2D.Tiles[0, 2], goalPosition);
            var test  = graph.Where(x => x != null).Select(x => x.Heuristic).ToList();

            Assert.AreEqual(63, graph.Count(x => x != null));
        }