[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: computer-go: transpositions
> Is there any other simple way prevent these loops?
> How does other programs approach the usage of transposition tables?
> Have I missed something important?
I've been working on tsumego for the whole last year as part of a
project.
I will release the source code for a brute-force solver for completely
surrounded positions and a feed-forward neural net that can recognize
vital points in a month or two. (allowing faster and safe minimax search
of open positions).
I'll notify you of that release. Meanwhile, I use a stack from the C++
STL to store hashed positions and prevent infinite loops other than Ko
:)
Christian