mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Code style triviality
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
89fe8bc0a6
commit
87507121d5
1 changed files with 3 additions and 3 deletions
|
@ -140,7 +140,7 @@ namespace {
|
|||
|
||||
// ThreatBonus[][] contains bonus according to which piece type
|
||||
// attacks which one.
|
||||
#define Z make_score(0, 0)
|
||||
#define Z S(0, 0)
|
||||
|
||||
const Score ThreatBonus[8][8] = {
|
||||
{ Z, Z, Z, Z, Z, Z, Z, Z }, // not used
|
||||
|
@ -252,8 +252,8 @@ namespace {
|
|||
Value SafetyTable[100];
|
||||
|
||||
// Pawn and material hash tables, indexed by the current thread id
|
||||
PawnInfoTable* PawnTable[8] = {0, 0, 0, 0, 0, 0, 0, 0};
|
||||
MaterialInfoTable* MaterialTable[8] = {0, 0, 0, 0, 0, 0, 0, 0};
|
||||
PawnInfoTable* PawnTable[8] = {0, 0, 0, 0, 0, 0, 0, 0};
|
||||
|
||||
// Sizes of pawn and material hash tables
|
||||
const int PawnTableSize = 16384;
|
||||
|
|
Loading…
Add table
Reference in a new issue