]> git.sesse.net Git - stockfish/blobdiff - src/nnue/features/half_kp.h
Unify naming convention of the NNUE code
[stockfish] / src / nnue / features / half_kp.h
index 2461acb725a2a5899ecc45368a1747e5fc901e32..14efb0895ede004ae2efb653726c025c25e50a9b 100644 (file)
@@ -33,25 +33,25 @@ namespace Stockfish::Eval::NNUE::Features {
 
    public:
     // Feature name
-    static constexpr const char* kName = "HalfKP(Friend)";
+    static constexpr const char* Name = "HalfKP(Friend)";
     // Hash value embedded in the evaluation file
-    static constexpr std::uint32_t kHashValue =
-        0x5D69D5B9u ^ (AssociatedKing == Side::kFriend);
+    static constexpr std::uint32_t HashValue =
+        0x5D69D5B9u ^ (AssociatedKing == Side::Friend);
     // Number of feature dimensions
-    static constexpr IndexType kDimensions =
-        static_cast<IndexType>(SQUARE_NB) * static_cast<IndexType>(PS_END);
+    static constexpr IndexType Dimensions =
+        static_cast<IndexType>(SQUARE_NB) * static_cast<IndexType>(PS_NB);
     // Maximum number of simultaneously active features
-    static constexpr IndexType kMaxActiveDimensions = 30; // Kings don't count
+    static constexpr IndexType MaxActiveDimensions = 30; // Kings don't count
     // Trigger for full calculation instead of difference calculation
-    static constexpr TriggerEvent kRefreshTrigger = TriggerEvent::kFriendKingMoved;
+    static constexpr TriggerEvent RefreshTrigger = TriggerEvent::FriendKingMoved;
 
     // Get a list of indices for active features
-    static void AppendActiveIndices(const Position& pos, Color perspective,
-                                    IndexList* active);
+    static void append_active_indices(const Position& pos, Color perspective,
+                                      IndexList* active);
 
     // Get a list of indices for recently changed features
-    static void AppendChangedIndices(const Position& pos, const DirtyPiece& dp, Color perspective,
-                                     IndexList* removed, IndexList* added);
+    static void append_changed_indices(const Position& pos, const DirtyPiece& dp, Color perspective,
+                                       IndexList* removed, IndexList* added);
   };
 
 }  // namespace Stockfish::Eval::NNUE::Features