Cookies help us deliver our services. By using our services, you agree to our use of cookies.

Chess Move Generator


Revision as of 12:06, 18 October 2006 by Borko (talk | contribs)

In search algorithm, a good move ordering enables us to reduct the tree sizes and search algorithm go deeper in the same time. An good chess move ordering schema can be:

  • checking moves, direct and discovered,
  • promotions,
  • capturing moves (MVV/LVA),
  • non-capturing moves (History hevristic).

The general idea of MVV/LVA is to first generate capture moves with the most valuable capture piece and least valuable attacker piece (e.g. pawn captures queen).

Links