mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 08:36:33 +08:00
Bugfix: KRK was not classified as KNOWN_WIN
Problem is that npMaterial is compared to _endgame_ value of rook, although npMaterial is always (also in endgame!) calculated using _middlegame_ values. Bug was hidden as long as Rook middlegame and endgame values were same. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
committed by
Marco Costalba
parent
8225fdd5bb
commit
46c0bdb74f
@@ -143,14 +143,14 @@ MaterialInfo* MaterialInfoTable::get_material_info(const Position& pos) {
|
|||||||
|
|
||||||
else if ( pos.non_pawn_material(BLACK) == Value(0)
|
else if ( pos.non_pawn_material(BLACK) == Value(0)
|
||||||
&& pos.piece_count(BLACK, PAWN) == 0
|
&& pos.piece_count(BLACK, PAWN) == 0
|
||||||
&& pos.non_pawn_material(WHITE) >= RookValueEndgame)
|
&& pos.non_pawn_material(WHITE) >= RookValueMidgame)
|
||||||
{
|
{
|
||||||
mi->evaluationFunction = &EvaluateKXK;
|
mi->evaluationFunction = &EvaluateKXK;
|
||||||
return mi;
|
return mi;
|
||||||
}
|
}
|
||||||
else if ( pos.non_pawn_material(WHITE) == Value(0)
|
else if ( pos.non_pawn_material(WHITE) == Value(0)
|
||||||
&& pos.piece_count(WHITE, PAWN) == 0
|
&& pos.piece_count(WHITE, PAWN) == 0
|
||||||
&& pos.non_pawn_material(BLACK) >= RookValueEndgame)
|
&& pos.non_pawn_material(BLACK) >= RookValueMidgame)
|
||||||
{
|
{
|
||||||
mi->evaluationFunction = &EvaluateKKX;
|
mi->evaluationFunction = &EvaluateKKX;
|
||||||
return mi;
|
return mi;
|
||||||
|
|||||||
Reference in New Issue
Block a user