Continue to search while it's opponent's turn ("Pundering"). Note: Use Principle Variation from previous search.
Improve the AlphaBeta Search method that use a transposition table during the search.
To begin to play on KGS & CGOS, GoTraxx needs the following features implemented: 1. "kgs-genmove_cleanup" GTP command. Current this command is implemented just like "gen_move" and the search rout...
Add scripts which can compile GoTraxx with Mono on the Windows and Unix platforms.
Two things really, capture the principal variation during AlphaBeta and use it to perform the (next) iterative AlphaBeta Search.
GoTraxx currently uses Hungarian type notation for parameter names. However, to better integrate with GhostDoc's documentation tool, we will be migration to camel case for parameter names. This al...
New feature to execute GTP commands from a file. The file name with the GTP commands will be passed via the command line.
New feature to allow a connection to CGOS via custom GTP commands. cgos-connect {name} {password} [# of games to be played=1] cgos-server {server name} [port number] This allows the engine to be...
A Monte-Carlo search works by generating a list of potential moves, and for each move playing out thousands of games at random on the resulting board. The move which leads to the best set of random...