X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbitbase.cpp;h=801815e70c2b21026d03094a3b1037192a376313;hp=75376d33b9874c83a875b8e821440b46d2a1026f;hb=a128faf0b0b6bd93dafbf2b6f6890dbc8d1e8d74;hpb=b870f5a091793ea423de78e74f5652b9307cfcbd diff --git a/src/bitbase.cpp b/src/bitbase.cpp index 75376d33..801815e7 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 Marco Costalba + Copyright (C) 2008-2010 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,6 +89,7 @@ void generate_kpk_bitbase(uint8_t bitbase[]) { int i, j, b; for(i = 0; i < 24576; i++) { for(b = 0, j = 0; j < 8; b |= (compress_result(Bitbase[8*i+j]) << j), j++); + assert(b == int(uint8_t(b))); bitbase[i] = (uint8_t)b; }