http://home.arcor.de/dreamlike/chess/index.html
Changes:
-Implementation of some kind of Internal Iterative Deepening in the most simple way:
Code: Select all
if (d >= 4 && hmove == 0) {
w = search(c, d-3, ply, alpha, beta, 0);
he = hashDP[hp & HMASK];
if (!((he^hp) & HINV)) hsave = hmove = (Move)(he & HMASK);
}
-UCI compatibility
-Analyze mode
-Sizable TTable