X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbitbase.cpp;h=7e86b26e45e7a84f2f807b07bcbb1a94412c3b0e;hp=75376d33b9874c83a875b8e821440b46d2a1026f;hb=fc234662364386800ec728643d7d6da610a560aa;hpb=b870f5a091793ea423de78e74f5652b9307cfcbd diff --git a/src/bitbase.cpp b/src/bitbase.cpp index 75376d33..7e86b26e 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-2009 Marco Costalba 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; }