Iterative Deepening Method of Game Searching | Artificial Intelligence
Ideas for searching in game have led to new algorithms in heuristic search. One such idea is Iterative Deepening, originally used in a program called chess 4.5. Rather than searching the game tree upto a fixed length, in this program the tree is generated up to a single ply, and static evaluation function is applied to the result of each [...]