From: Marco Costalba Date: Fri, 15 Feb 2013 07:56:04 +0000 (+0100) Subject: Further speed up bitbase generation X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=e0dfb0bc34dfd6bdb055a7f5779e7a61e2d76dd6;hp=e0dfb0bc34dfd6bdb055a7f5779e7a61e2d76dd6 Further speed up bitbase generation Another trick, along the same lines of previous patch. This time we first check positions with white side to move that, becuase we start with pawn on rank 7, are easily classified as wins, then black ones. Number of cycles reduced to 15 ! Becuase now it is faster we can remove a lot of code to detect theoretical draws. We will calculate them anyhow, although a bit slower, but the speed up trick more than compensates it. Verified that generated bitbases match original ones. No functional change. ---