zou3519/acquire

The AI is not competitive

chu1248 opened this issue · 0 comments

stats(i) += result(i)

The node scoring simply considers its own score in competitive game. It should probably consider the differences between itself and other opponents, e.g.
stats(i) += result(i) * result.length - result.sum

(PITreeNode also experience the same problem.)