mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-23 02:27:00 +08:00
Fix a bug in pawns eval tracing
Instead of totals we were showing white and black values. Spotted by Sven Schüle No functional change.
This commit is contained in:
@@ -961,8 +961,8 @@ Value do_evaluate(const Position& pos) {
|
||||
switch (idx) {
|
||||
case PST: case IMBALANCE: case PAWN: case TOTAL:
|
||||
ss << std::setw(20) << name << " | --- --- | --- --- | "
|
||||
<< std::setw(6) << to_cp(mg_value(wScore)) << " "
|
||||
<< std::setw(6) << to_cp(eg_value(wScore)) << " \n";
|
||||
<< std::setw(6) << to_cp(mg_value(wScore - bScore)) << " "
|
||||
<< std::setw(6) << to_cp(eg_value(wScore - bScore)) << " \n";
|
||||
break;
|
||||
default:
|
||||
ss << std::setw(20) << name << " | " << std::noshowpos
|
||||
|
||||
Reference in New Issue
Block a user