]> git.sesse.net Git - stockfish/blobdiff - src/nnue/features/features_common.h
Unify naming convention of the NNUE code
[stockfish] / src / nnue / features / features_common.h
index b0073b8b6ed998dfe85d4eb0178bdccb0d49a5f9..9584cac8825518acf47f228b04b6e91e63899af7 100644 (file)
@@ -24,7 +24,7 @@
 #include "../../evaluate.h"
 #include "../nnue_common.h"
 
-namespace Eval::NNUE::Features {
+namespace Stockfish::Eval::NNUE::Features {
 
   class IndexList;
 
@@ -33,13 +33,13 @@ namespace Eval::NNUE::Features {
 
   // Trigger to perform full calculations instead of difference only
   enum class TriggerEvent {
-    kFriendKingMoved // calculate full evaluation when own king moves
+    FriendKingMoved // calculate full evaluation when own king moves
   };
 
   enum class Side {
-    kFriend // side to move
+    Friend // side to move
   };
 
-}  // namespace Eval::NNUE::Features
+}  // namespace Stockfish::Eval::NNUE::Features
 
 #endif // #ifndef NNUE_FEATURES_COMMON_H_INCLUDED