]> git.sesse.net Git - stockfish/blobdiff - src/evaluate.cpp
Rewarding Quiet Moves that Enable Razoring
[stockfish] / src / evaluate.cpp
index c405cfb55388601ac1bf130fbdab8b69e0f79d30..9c39d4c07fbb407ed7934dc14ab118994615c557 100644 (file)
@@ -144,8 +144,8 @@ void NNUE::verify() {
 }
 
 
-// Returns a static, purely materialistic evaluation of the position
-// from the point of view of the given color. It can be divided by PawnValue to get
+// Returns a static, purely materialistic evaluation of the position from
+// the point of view of the given color. It can be divided by PawnValue to get
 // an approximation of the material advantage on the board in terms of pawns.
 Value Eval::simple_eval(const Position& pos, Color c) {
     return PawnValue * (pos.count<PAWN>(c) - pos.count<PAWN>(~c))