mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
added header guards
5 include files in \eval\nnue\architectures
This commit is contained in:
parent
7818d23afb
commit
08d8adbade
5 changed files with 19 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
|||
// NNUE評価関数で用いる入力特徴量とネットワーク構造の定義
|
||||
|
||||
#ifndef HALFKP_CR_EP_256X2_32_32_H
|
||||
#define HALFKP_CR_EP_256X2_32_32_H
|
||||
|
||||
#include "../features/feature_set.h"
|
||||
#include "../features/half_kp.h"
|
||||
#include "../features/castling_right.h"
|
||||
|
@ -36,3 +39,4 @@ namespace Eval {
|
|||
} // namespace NNUE
|
||||
|
||||
} // namespace Eval
|
||||
#endif // HALFKP_CR_EP_256X2_32_32_H
|
|
@ -1,5 +1,8 @@
|
|||
// NNUE評価関数で用いる入力特徴量とネットワーク構造の定義
|
||||
|
||||
#ifndef HALFKP_256X2_32_32_H
|
||||
#define HALFKP_256X2_32_32_H
|
||||
|
||||
#include "../features/feature_set.h"
|
||||
#include "../features/half_kp.h"
|
||||
|
||||
|
@ -33,3 +36,4 @@ using Network = Layers::OutputLayer;
|
|||
} // namespace NNUE
|
||||
|
||||
} // namespace Eval
|
||||
#endif // HALFKP_256X2_32_32_H
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
// NNUE評価関数で用いる入力特徴量とネットワーク構造の定義
|
||||
|
||||
#ifndef K_P_CR_EP_256X2_32_32_H
|
||||
#define K_P_CR_EP_256X2_32_32_H
|
||||
|
||||
#include "../features/feature_set.h"
|
||||
#include "../features/k.h"
|
||||
#include "../features/p.h"
|
||||
|
@ -36,3 +39,4 @@ namespace Eval {
|
|||
} // namespace NNUE
|
||||
|
||||
} // namespace Eval
|
||||
#endif // K_P_CR_EP_256X2_32_32_H
|
|
@ -1,5 +1,8 @@
|
|||
// NNUE評価関数で用いる入力特徴量とネットワーク構造の定義
|
||||
|
||||
#ifndef K_P_CR_256X2_32_32_H
|
||||
#define K_P_CR_256X2_32_32_H
|
||||
|
||||
#include "../features/feature_set.h"
|
||||
#include "../features/k.h"
|
||||
#include "../features/p.h"
|
||||
|
@ -35,3 +38,4 @@ namespace Eval {
|
|||
} // namespace NNUE
|
||||
|
||||
} // namespace Eval
|
||||
#endif // K_P_CR_256X2_32_32_H
|
|
@ -1,4 +1,6 @@
|
|||
// NNUE評価関数で用いる入力特徴量とネットワーク構造の定義
|
||||
#ifndef K_P_256X2_32_32_H
|
||||
#define K_P_256X2_32_32_H
|
||||
|
||||
#include "../features/feature_set.h"
|
||||
#include "../features/k.h"
|
||||
|
@ -33,3 +35,4 @@ using Network = Layers::OutputLayer;
|
|||
} // namespace NNUE
|
||||
|
||||
} // namespace Eval
|
||||
#endif // K_P_256X2_32_32_H
|
Loading…
Add table
Reference in a new issue