mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 09:06:45 +08:00
@@ -18,7 +18,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cstring> // For std::memset
|
|
||||||
|
|
||||||
#include "bitboard.h"
|
#include "bitboard.h"
|
||||||
#include "bitcount.h"
|
#include "bitcount.h"
|
||||||
@@ -247,9 +246,7 @@ namespace {
|
|||||||
{ 728, 10316, 55013, 32803, 12281, 15100, 16645, 255 } };
|
{ 728, 10316, 55013, 32803, 12281, 15100, 16645, 255 } };
|
||||||
|
|
||||||
Bitboard occupancy[4096], reference[4096], edges, b;
|
Bitboard occupancy[4096], reference[4096], edges, b;
|
||||||
int age[4096], current = 0, i, size;
|
int age[4096] = {0}, current = 0, i, size;
|
||||||
|
|
||||||
std::memset(age, 0, sizeof(age));
|
|
||||||
|
|
||||||
// attacks[s] is a pointer to the beginning of the attacks table for square 's'
|
// attacks[s] is a pointer to the beginning of the attacks table for square 's'
|
||||||
attacks[SQ_A1] = table;
|
attacks[SQ_A1] = table;
|
||||||
|
|||||||
@@ -341,7 +341,7 @@ namespace {
|
|||||||
Move easyMove = EasyMove.get(pos.key());
|
Move easyMove = EasyMove.get(pos.key());
|
||||||
EasyMove.clear();
|
EasyMove.clear();
|
||||||
|
|
||||||
std::memset(ss-2, 0, 5 * sizeof(Stack));
|
std::memset(stack, 0, 5 * sizeof(Stack));
|
||||||
|
|
||||||
depth = DEPTH_ZERO;
|
depth = DEPTH_ZERO;
|
||||||
BestMoveChanges = 0;
|
BestMoveChanges = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user