]> git.sesse.net Git - stockfish/blobdiff - src/nnue/features/index_list.h
Unify naming convention of the NNUE code
[stockfish] / src / nnue / features / index_list.h
index d9ad680adf7b436f0f4587e88a536e83637f7603..edf0add1b450877d229c1f27d75c1ec189ebcfda 100644 (file)
@@ -1,6 +1,6 @@
 /*
   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
-  Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
+  Copyright (C) 2004-2021 The Stockfish developers (see AUTHORS file)
 
   Stockfish is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -24,7 +24,7 @@
 #include "../../position.h"
 #include "../nnue_architecture.h"
 
-namespace Eval::NNUE::Features {
+namespace Stockfish::Eval::NNUE::Features {
 
   // Class template used for feature index list
   template <typename T, std::size_t MaxSize>
@@ -56,9 +56,9 @@ namespace Eval::NNUE::Features {
 
   //Type of feature index list
   class IndexList
-      : public ValueList<IndexType, RawFeatures::kMaxActiveDimensions> {
+      : public ValueList<IndexType, RawFeatures::MaxActiveDimensions> {
   };
 
-}  // namespace Eval::NNUE::Features
+}  // namespace Stockfish::Eval::NNUE::Features
 
 #endif // NNUE_FEATURES_INDEX_LIST_H_INCLUDED