tbsteinb / AIFinalProject

My final project for AI
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

Graph Search Algorithm #7

Closed tbsteinb closed 3 years ago

tbsteinb commented 3 years ago

I will start with just a breadth-first search, but this may need to be changed to make the search more efficient.

tbsteinb commented 3 years ago

I re-evaluated how my problem was set up and found that a graph was unnecessary. My data set turns out to be a tree, and a greedy search is capable of finding an optimal solution.