Hi

http://trac.gnugo.org/gnugo/ticket/87 has been closed as a "won't fix"

One thing i can do is a fixing patch, replacing all unreliable floating 
equality test by safe inequality tests:
if (a == b) 
replaced by 
epilon=0.000001
if (abs(a-b) <= epsilon)

Should i use gg_abs instead of abs ?

My potential 2 cents
Alain


_______________________________________________
gnugo-devel mailing list
gnugo-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/gnugo-devel

Reply via email to