Beta

From Chessprogramming wiki
Revision as of 16:18, 2 May 2018 by GerdIsenberg (talk | contribs) (Created page with "'''Home * Search * Score * Beta''' '''Beta''' (β) is the upper bound of a score for the node. If the node value exce...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Home * Search * Score * Beta

Beta (β) is the upper bound of a score for the node. If the node value exceeds or equals beta, it means that the opponent will avoid this node, since his guaranteed score (Alpha of the parent node) is already greater. Thus, Beta is the best-score the opponent (min-player) could archive so far - in a Negamax framework from max-players point of view, where beta is the negated value of alpha from the parent node. If a beta-cutoff occurs on the upper bound of a Cut-Node given by Beta, the value returned is a lower bound.

See also

External Links

Up one Level