X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fevaluate.cpp;h=3e996da8d32ba6f247ad8b516a880af2d28f2dd0;hp=c22b591380433388fe37220dec5aa2607bbb2cb6;hb=feb5342b393895160867aa7c7fa4d6cb563718ca;hpb=6cddf9183cee0fa55944d2b2c171ca9b0f55cc87 diff --git a/src/evaluate.cpp b/src/evaluate.cpp index c22b5913..3e996da8 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -490,7 +490,10 @@ void init_eval(int threads) { } for (Bitboard b = 0ULL; b < 256ULL; b++) + { + assert(count_1s(b) == int(uint8_t(count_1s(b)))); BitCount8Bit[b] = (uint8_t)count_1s(b); + } }