1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 08:43:09 +00:00

Fix some Intel compilers warnings

Also a compile fix due to Makefile missing new
application.cpp file.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2009-05-09 12:01:00 +02:00
parent 5f7d37273c
commit 980124c609
6 changed files with 35 additions and 36 deletions

View file

@ -24,7 +24,7 @@
EXE = stockfish
OBJS = bitboard.o pawns.o material.o endgame.o evaluate.o main.o \
OBJS = application.o bitboard.o pawns.o material.o endgame.o evaluate.o main.o \
misc.o move.o movegen.o history.o movepick.o search.o piece.o \
position.o direction.o tt.o value.o uci.o ucioption.o \
mersenne.o book.o bitbase.o san.o benchmark.o

View file

@ -571,10 +571,9 @@ namespace {
ei.egMobility += Sign[us] * EgBonus[Piece][mob];
// Bishop and Knight outposts
if ( (Piece != BISHOP && Piece != KNIGHT) // compile time condition
|| !p.square_is_weak(s, them))
return mob;
if ( (Piece == BISHOP || Piece == KNIGHT) // compile time condition
&& p.square_is_weak(s, them))
{
// Initial bonus based on square
Value v, bonus;
v = bonus = OutpostBonus[Piece][relative_square(us, s)];
@ -590,6 +589,7 @@ namespace {
}
ei.mgValue += Sign[us] * bonus;
ei.egValue += Sign[us] * bonus;
}
return mob;
}

View file

@ -835,9 +835,8 @@ namespace {
// Direct checks
b = target & ~dc;
if (Piece == KING || !b)
return mlist;
if (Piece != KING || b)
{
Bitboard checkSqs = pos.piece_attacks<Piece>(ksq) & pos.empty_squares();
if (!checkSqs)
return mlist;
@ -853,6 +852,7 @@ namespace {
Bitboard bb = pos.piece_attacks<Piece>(from) & checkSqs;
SERIALIZE_MOVES(bb);
}
}
return mlist;
}

View file

@ -37,6 +37,8 @@
struct EvalInfo;
struct SearchStack;
extern SearchStack EmptySearchStack;
/// MovePicker is a class which is used to pick one legal move at a time from
/// the current position. It is initialized with a Position object and a few
/// moves we have reason to believe are good. The most important method is

View file

@ -40,8 +40,6 @@
//// Variables
////
extern SearchStack EmptySearchStack;
int Position::castleRightsMask[64];
Key Position::zobrist[2][8][64];

View file

@ -31,7 +31,6 @@
#include "movepick.h"
#include "san.h"
extern SearchStack EmptySearchStack;
////
//// Local definitions