X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmaterial.cpp;h=9d17af208c4261783f6d446bb165057994b64bee;hb=b939c805139e4b37f04fbf177f580c35ebe9f130;hp=e76641d1a0aa7c784bcfa6be7b34450fa69fd25b;hpb=70a818cbd6784ccfa8503d94bc31dd1dc16dd1ff;p=stockfish diff --git a/src/material.cpp b/src/material.cpp index e76641d1..9d17af20 100644 --- a/src/material.cpp +++ b/src/material.cpp @@ -24,6 +24,8 @@ using namespace std; +namespace Stockfish { + namespace { #define S(mg, eg) make_score(mg, eg) @@ -72,7 +74,7 @@ namespace { bool is_KBPsK(const Position& pos, Color us) { return pos.non_pawn_material(us) == BishopValueMg - && pos.count(us) >= 1; + && pos.count(us) >= 1; } bool is_KQKRPs(const Position& pos, Color us) { @@ -223,3 +225,5 @@ Entry* probe(const Position& pos) { } } // namespace Material + +} // namespace Stockfish