Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/solver/dfpn.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ class DFPN {
short getResult() const;
std::string formatResult() const;
static void signalHandler([[maybe_unused]] int signum);
helper::Move bestMove() const;

inline helper::PROOF_VALUE result() const { return result_; }
inline helper::Move bestMove() const { return best_move_; }

private:
Node root_;
Expand Down
Loading