I think I found a bug in ChooseMove
Quoting Sylvain Gelly <[email protected]>:
coefficient = 1 - rc * (rc + c + rc * c * b)
I think this has to be
coefficient = 1 - rc / (rc + c + rc * c * b)
thus when c is 0 (initially) the coefficient is 0
when c goes towards infinity the coefficent goes 1
which is how this function should behave.
Magnus
--
Magnus Persson
Berlin, Germany
_______________________________________________
computer-go mailing list
[email protected]
http://www.computer-go.org/mailman/listinfo/computer-go/