User Tools

Site Tools


chess:programming:iterative_deepening

This is an old revision of the document!


Chess - Programming - Iterative Deepening

Iterative deepening starts with a one ply search, then increments the search depth and does another search.

  • This process is repeated until the time allocated for the search is exhausted.
  • In case of an unfinished search, program has always an option to fall back to the move from the less deep search.
    • Yet if we make sure that this move is searched first in the next iteration, then overwriting the new move with the old one becomes unnecessary.
    • This way, also the results from the partial search can be accepted - though in case of a severe drop of the score it is wise to allocate some more time, as the first alternative is often a bad capture, delaying the loss instead of preventing it.

chess/programming/iterative_deepening.1634040920.txt.gz · Last modified: 2021/10/12 12:15 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki