Presentation is loading. Please wait.

Presentation is loading. Please wait.

The Top Men Christian Dell, Joe Hall, Alex Reeser, Landon Rogge, Jason Todd, Jared Whitaker A-mAIze-in.

Similar presentations


Presentation on theme: "The Top Men Christian Dell, Joe Hall, Alex Reeser, Landon Rogge, Jason Todd, Jared Whitaker A-mAIze-in."— Presentation transcript:

1 The Top Men Christian Dell, Joe Hall, Alex Reeser, Landon Rogge, Jason Todd, Jared Whitaker A-mAIze-in

2 Abstract Mazes Find a particular location in a maze and discover a path to the location. Use different h(x) with A* to determine best of the code

3 Implementation Java using awt/swing Select which test maze to use Select the heustric to use Will run the selected mode and output raw data on left

4

5

6

7 A General PEAS Agent: Maze Traversing Agent Performance: Number of moves it takes to solve the maze or find cheese Environment: Maze Actuators: performMovement function Sensors: examineEnvironment function

8 Rules A* with various h(x) From a starting point, find a path to another point Cannot walk through walls

9 Maze Solving Fully Observable: Yes Deterministic: Yes Episodic: Yes Static: Yes Discrete: Yes Multi-agent: No

10 A* Heuristics Implemented Euclidean Manhattan Number of Walls (Method 1) Number of Walls (Method 2) Last in List (f(x) = 0; udlr) Dijkstra’s (h(x) = 0) Random Numbers (0-15)

11 Number of Walls (Method 1) Take starting position x1 and y1, take ending position x2 and y2, set wall = 0 Repeat until x1 = x2 and y1 = y2 If x1 > x2, x1 – 1; if x1 y2, y1 – 1; if y1 < y2, y1 + 1; else y1 If a wall exists at the new (x1, y1), wall + 1

12 S *** X

13 Number of Walls (Method 2) Take starting position x1 and y1, take ending position x2 and y2, set wall = 0 Repeat until x1 = x2 If x1 > x2, x1 – 1; if x1 y2, y1 – 1; if y1 < y2, y1 + 1; else y1 If a wall exists at the new (x1, y1), wall + 1

14 *** S X

15 Last in List Chooses the last member of the closed set (most recently added) Results in a unique order – find the most recent expanded node with adjacent unexpanded nodes and select the top, bottom, left, right node to continue down in that order. Bizzare, efficient results in some cases. Similar to depth first search. Accidental mis-implementation of Dijkstra’s which occurs when f(x) = 0 instead of h(x) = 0.

16 ---*** --- ***---S ***--- ***--- ***--- ***--- ***--- X*** ---

17 Some Results EuclideanManhattanWalls 1Walls 2Last in List DijkstraRandom 89+288+265+457+476+295+194 (100 Avg) 85+587+382+887+659+597+495 57+256+240+558+452+575+274

18 Some images Maze 1 Maze 1 Solution

19 Some images Maze 1 Random Maze 1 Wall Method 2

20 Some images Maze 2 Maze 2 Solution

21 Some images Maze 2 Last in List Maze 2 Wall Method 2

22 Some images Maze 3 Maze 3 Solution

23 Some images Maze 3 Euclidean Maze 3 Wall Method 1

24 A graph of some sort

25

26 Maze Conclusions Random Heuristics are useless in general Dijkstra’s fared even worse than random heuristics? Euclidian/Manhattan performance depended on maze, usually not well, many misleading paths in mazes Number of walls did relatively okay Depth first did well, but likely because of good random positioning of the starting location and the cheese


Download ppt "The Top Men Christian Dell, Joe Hall, Alex Reeser, Landon Rogge, Jason Todd, Jared Whitaker A-mAIze-in."

Similar presentations


Ads by Google