[EMAIL PROTECTED] wrote:
> Chris wrote:
> > I know this probably seems trivial, but I can't seem to find the bug in
> > my alphabeta search implementation.
>
> This is another alphabeta implementation (all the nicest algorithms are
> inside this AIMA codebase):
> http://aima.cs.berkeley.edu/python/games.html
>
> Later when you program works you can find this helpful to improve your
> algorithm:
> http://citeseer.ist.psu.edu/11954.html

Thanks. I actually already knew about the AIMA implementation, and used
that and an alternative version on wikipedia to fix my code. It turns
out my heuristic_value function was incorrect. I've also managed to get
it working with a transposition table, which has really sped things up.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to