Options when starting a new game


The De methods for move generation are currently:
AlphaBeta
The best chess engine that uses alpha-beta pruning to make it effective
SearchNBest
Relatively fast "home made" chess engine
Simple
Slow chess engine that makes a complete search of the move tree

Move generation Search Depth determine how many moves the chess engine should look ahead, the higher numer the longer time it takes to determine move och gives better moves.

Number of best nodes to search exist only then using SearchNBest engine and determine how precise the move search will be.