X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmaterial.cpp;h=f0ee5f682d02cada44957745849684613f3e4196;hb=fc89dbcab2616603ba6edbf6277c3edecfc3a64a;hp=fdac1d0c6b02fb95f5fd42d964212b6fdfa8c902;hpb=89fe8bc0a60900806eb631a832630e6a7a44b2a4;p=stockfish diff --git a/src/material.cpp b/src/material.cpp index fdac1d0c..f0ee5f68 100644 --- a/src/material.cpp +++ b/src/material.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008-2009 Marco Costalba + Copyright (C) 2008-2010 Marco Costalba, Joona Kiiski, Tord Romstad Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -304,7 +304,7 @@ MaterialInfo* MaterialInfoTable::get_material_info(const Position& pos) { { if ( pos.non_pawn_material(c) == pos.non_pawn_material(opposite_color(c)) || pos.non_pawn_material(c) < RookValueMidgame) - mi->factor[c] = 0; + mi->factor[c] = SCALE_FACTOR_ZERO; else { switch (pos.piece_count(c, BISHOP)) { @@ -374,7 +374,6 @@ EndgameFunctions::EndgameFunctions() { add >("KBPPKB"); add >("KBPKN"); add >("KRPPKRP"); - add >("KRPPKRP"); } EndgameFunctions::~EndgameFunctions() {