Enumeration SearchMethodConst

Search method to use when traversing the game tree.

Located in an instance of SearchOpts at SearchOpts.method.

Enumeration Members

Enumeration Members

DEPTH: 0

Go to depth specified by SearchOpts.depth.

DEEPENING: 1

Search iteratively deeper starting from SearchOpts.initialDepth up to SearchOpts.depth.

TIME: 2

Same as DEEPENING but stops after the time in SearchOpts.timeout has elapsed.

If SearchOpts.depth is non-zero, performs a time and depth limited search.

If SearchOpts.timeout and SearchOpts.depth are 0, performs a full depth search.

Generated using TypeDoc