1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 16:53:09 +00:00

added header guards

5 include files in \eval\nnue\architectures
This commit is contained in:
FireFather 2020-06-24 22:41:00 +02:00 committed by nodchip
parent ff31d92b94
commit 7a3c3eacdf
5 changed files with 19 additions and 0 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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