Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 306 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 306 Bytes

PathfindingAlgos

Using Admissible & Consistent Heuristics for Pacman AI

Exploring the variety of search algorithms and their optimizations.

Search Algorithms Included are:

  • BFS
  • DFS
  • UCS
  • A*
  • Local Search

The Heuristics chosen for A* was the Manhattan distance between the origin and target.