X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbitbase.cpp;h=425d0f149326f6cd569930cf913fb09e9127cc9e;hp=0599c3c81238d2255583291bc5f3a1ab9a4829ef;hb=8c10029df135f841126d17a65002e217c7ca1887;hpb=c5ec94d0f1b128fc2c691c7231663a345409d5cc diff --git a/src/bitbase.cpp b/src/bitbase.cpp index 0599c3c8..425d0f14 100644 --- a/src/bitbase.cpp +++ b/src/bitbase.cpp @@ -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)