我不明白为什么按原样使用表条目的标志。例如,考虑带有 alpha-beta 修剪和转置表的 Negamax伪代码,并专注于 TT 部分。
(* Transposition Table Lookup; node is the lookup key for ttEntry *)
ttEntry := transpositionTableLookup(node)
if ttEntry is valid and ttEntry.depth ≥ depth then
if ttEntry.flag = EXACT then
return ttEntry.value
else if ttEntry.flag = LOWERBOUND then
α := max(α, ttEntry.value)
else if ttEntry.flag = UPPERBOUND then
β := min(β, ttEntry.value)
if α ≥ β then
return ttEntry.value
没关系。如果 entry 包含确切值的下限,我们会尝试从左侧缩小窗口,等等。
(* Transposition Table Store; node is the lookup key for ttEntry *)
ttEntry.value := value
if value ≤ alphaOrig then
ttEntry.flag := UPPERBOUND
else if value ≥ β then
ttEntry.flag := LOWERBOUND
else
ttEntry.flag := EXACT
ttEntry.depth := depth
transpositionTableStore(node, ttEntry)
而这部分我不明白。如果值太小,为什么要设置 UPPERBOUND 标志?value位于搜索窗口的左侧——它小于已知的下限—— alpha。所以看起来价值应该是一个LOWERBOUND。
从我的测试以及每个人都使用该版本的事实中可以看出,我的逻辑肯定是错误的。但我不明白为什么。