]> git.sesse.net Git - stockfish/blobdiff - src/evaluate.cpp
Give credit to Joona for optimized parameters
[stockfish] / src / evaluate.cpp
index c1df7c861a58c101531b1111b384bba77ae479c3..f93afad505883031820e8e9f46e4d3979959b980 100644 (file)
@@ -170,13 +170,13 @@ namespace {
   // Bonus for unstoppable passed pawns
   const Value UnstoppablePawnValue = Value(0x500);
 
-  // Rooks and queens on the 7th rank
+  // Rooks and queens on the 7th rank (modified by Joona Kiiski)
   const Value MidgameRookOn7thBonus  = Value(47);
   const Value EndgameRookOn7thBonus  = Value(98);
   const Value MidgameQueenOn7thBonus = Value(27);
   const Value EndgameQueenOn7thBonus = Value(54);
 
-  // Rooks on open files
+  // Rooks on open files (modified by Joona Kiiski)
   const Value RookOpenFileBonus = Value(43);
   const Value RookHalfOpenFileBonus = Value(19);