1 / 5

Modified Chinese Checkers

Modified Chinese Checkers. Sabrina Wang, Ben Perlmutter , Melinda Lim. Why Trees are Bad. Trees are static. BFS – too many nodes/branches, not enough processing power DFS – The depth isn’t always known.

helen
Télécharger la présentation

Modified Chinese Checkers

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Modified Chinese Checkers Sabrina Wang, Ben Perlmutter, Melinda Lim

  2. Why Trees are Bad • Trees are static. • BFS – too many nodes/branches, not enough processing power • DFS – The depth isn’t always known. • Backtracking – Intermediate steps depend on opposition moves, too many nodes/branches to explore • Iterative Deepening – depends on the oppositions moves which are variable and can’t be predicted

  3. Generic Best First Search • A* is a great option. • Challenge: finding an accurate g(n)/h(n) heuristic. • g(n) = combination of: y distance to reach node n and number of pieces in path • h(n) = combination of: y distance to reach the end from node n and number of pieces in path (based on expected value)

  4. Improvements to A* • IDA* will help us reduce the number of h(n) values to be calculated. • What is the cut off? • Should it be different at different points of the game? • SMA* - do we need to consider memory issues?

  5. Other Considerations • Grey Marble • Is it just another piece? • Or does it have other implications? • Do we treat it as a “special” case in the algorithm? • Other heuristic improvements to g(n) h(n) • h(n) – determine where the grey ball may be placed • “Blocking” • How to act at different stages in the game.

More Related