Skip to content

Commit

Permalink
resolve include issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Disservin committed Apr 23, 2024
1 parent 35a56f8 commit 5d69327
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/evaluate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include "position.h"
#include "types.h"
#include "uci.h"
#include "nnue/nnue_accumulator.h"

namespace Stockfish {

Expand Down
2 changes: 1 addition & 1 deletion src/evaluate.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

#include <string>

#include "nnue/nnue_accumulator.h"
#include "types.h"

namespace Stockfish {
Expand All @@ -41,6 +40,7 @@ constexpr inline int SmallNetThreshold = 1274, PsqtOnlyThreshold = 2389;

namespace NNUE {
struct Networks;
struct AccumulatorCaches;
}

std::string trace(Position& pos, const Eval::NNUE::Networks& networks);
Expand Down
2 changes: 1 addition & 1 deletion src/nnue/features/half_ka_v2_hm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include "../../bitboard.h"
#include "../../position.h"
#include "../../types.h"
#include "../nnue_common.h"
#include "../nnue_accumulator.h"

namespace Stockfish::Eval::NNUE::Features {

Expand Down
2 changes: 1 addition & 1 deletion src/nnue/nnue_misc.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
#include <cstddef>
#include <string>

#include "nnue_accumulator.h"
#include "../types.h"
#include "nnue_architecture.h"

Expand Down Expand Up @@ -52,6 +51,7 @@ struct NnueEvalTrace {
};

struct Networks;
struct AccumulatorCaches;

std::string trace(Position& pos, const Networks& networks, AccumulatorCaches& caches);
void hint_common_parent_position(const Position& pos,
Expand Down

0 comments on commit 5d69327

Please sign in to comment.