RU-CS530-Go-Team / GoLD

Solving Life and Death Problems in Go
1 stars 2 forks source link

Search tree to terminal states, but only evaluate children #22

Closed depthfirst closed 9 years ago

depthfirst commented 9 years ago

Searching the whole tree while extracting features for each move is totally impractical given our branching factor and cost of feature extraction. However, searching for living groups is much cheaper. Electing to modify search to search terminal states to maxdepth, but only extract features and evaluate moves with the classifier for moves one level deep, assuming there are no terminal "good" states to choose.