X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbitbase.cpp;h=425d0f149326f6cd569930cf913fb09e9127cc9e;hp=ef067c65bceca3bc809c5b977a8dd4610fcc4bc2;hb=8c10029df135f841126d17a65002e217c7ca1887;hpb=ea4e22be1da1ccbf316d27f2eb3b14d0e13388e4 diff --git a/src/bitbase.cpp b/src/bitbase.cpp index ef067c65..425d0f14 100644 --- a/src/bitbase.cpp +++ b/src/bitbase.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2012 Marco Costalba, Joona Kiiski, Tord Romstad + Copyright (C) 2008-2013 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -89,7 +89,8 @@ void Bitbases::init_kpk() { for (idx = 0; idx < IndexMax; idx++) db[idx].classify_leaf(idx); - // Iterate until all positions are classified (15 cycles needed) + // Iterate through the positions until no more of the unknown positions can be + // changed to either wins or draws (15 cycles needed). while (repeat) for (repeat = idx = 0; idx < IndexMax; idx++) if (db[idx] == UNKNOWN && db[idx].classify(db) != UNKNOWN)