X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fevaluate.cpp;h=30ed08793e948744db4bef81500057b3de5e3bde;hp=4bda8466e1fdaeddc3e346376d4a37f2a038dbae;hb=d0e51bc0f0c77f93323aaa86c9c2485c41d38271;hpb=f036239521fe4f6afb7e8cbc51d860ffa476f6bd diff --git a/src/evaluate.cpp b/src/evaluate.cpp index 4bda8466..30ed0879 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -337,20 +337,20 @@ Value evaluate(const Position &pos, EvalInfo &ei, int threadID) { for (Color c = WHITE; c <= BLACK; c++) { // Knights - for (int i = 0; i < pos.knight_count(c); i++) - evaluate_knight(pos, pos.knight_list(c, i), c, ei); + for (int i = 0; i < pos.piece_count(c, KNIGHT); i++) + evaluate_knight(pos, pos.piece_list(c, KNIGHT, i), c, ei); // Bishops - for (int i = 0; i < pos.bishop_count(c); i++) - evaluate_bishop(pos, pos.bishop_list(c, i), c, ei); + for (int i = 0; i < pos.piece_count(c, BISHOP); i++) + evaluate_bishop(pos, pos.piece_list(c, BISHOP, i), c, ei); // Rooks - for (int i = 0; i < pos.rook_count(c); i++) - evaluate_rook(pos, pos.rook_list(c, i), c, ei); + for (int i = 0; i < pos.piece_count(c, ROOK); i++) + evaluate_rook(pos, pos.piece_list(c, ROOK, i), c, ei); // Queens - for(int i = 0; i < pos.queen_count(c); i++) - evaluate_queen(pos, pos.queen_list(c, i), c, ei); + for(int i = 0; i < pos.piece_count(c, QUEEN); i++) + evaluate_queen(pos, pos.piece_list(c, QUEEN, i), c, ei); // Special pattern: trapped bishops on a7/h7/a2/h2 Bitboard b = pos.bishops(c) & MaskA7H7[c]; @@ -427,7 +427,7 @@ Value evaluate(const Position &pos, EvalInfo &ei, int threadID) { { // Check for KBP vs KB with only a single pawn that is almost // certainly a draw or at least two pawns. - bool one_pawn = (pos.pawn_count(WHITE) + pos.pawn_count(BLACK) == 1); + bool one_pawn = (pos.piece_count(WHITE, PAWN) + pos.piece_count(BLACK, PAWN) == 1); sf = one_pawn ? ScaleFactor(8) : ScaleFactor(32); } else @@ -569,7 +569,7 @@ namespace { if (v && (p.pawn_attacks(them, s) & p.pawns(us))) { bonus += v / 2; - if ( p.knight_count(them) == 0 + if ( p.piece_count(them, KNIGHT) == 0 && (SquaresByColorBB[square_color(s)] & p.bishops(them)) == EmptyBoardBB) bonus += v; } @@ -724,7 +724,7 @@ namespace { // from optimally tuned. Color them = opposite_color(us); - if ( p.queen_count(them) >= 1 + if ( p.piece_count(them, QUEEN) >= 1 && ei.kingAttackersCount[them] >= 2 && p.non_pawn_material(them) >= QueenValueMidgame + RookValueMidgame && ei.kingAdjacentZoneAttacksCount[them]) @@ -781,9 +781,9 @@ namespace { { // We have a mate, unless the queen is pinned or there // is an X-ray attack through the queen. - for (int i = 0; i < p.queen_count(them); i++) + for (int i = 0; i < p.piece_count(them, QUEEN); i++) { - from = p.queen_list(them, i); + from = p.piece_list(them, QUEEN, i); if ( bit_is_set(p.piece_attacks(from), to) && !bit_is_set(p.pinned_pieces(them), from) && !(rook_attacks_bb(to, occ & clear_mask_bb(from)) & p.rooks_and_queens(us)) @@ -994,7 +994,7 @@ namespace { // value if the other side has a rook or queen. if(square_file(s) == FILE_A || square_file(s) == FILE_H) { if(pos.non_pawn_material(them) == KnightValueMidgame - && pos.knight_count(them) == 1) + && pos.piece_count(them, KNIGHT) == 1) ebonus += ebonus / 4; else if(pos.rooks_and_queens(them)) ebonus -= ebonus / 4;