mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 05:07:46 +00:00
Post merge fixes
This commit is contained in:
+2
-2
@@ -127,7 +127,7 @@ namespace Eval {
|
||||
}
|
||||
}
|
||||
|
||||
void NNUE::export_net(const std::optional<std::string>& filename) {
|
||||
void export_net(const std::optional<std::string>& filename) {
|
||||
std::string actualFilename;
|
||||
if (filename.has_value()) {
|
||||
actualFilename = filename.value();
|
||||
@@ -148,7 +148,7 @@ namespace Eval {
|
||||
}
|
||||
|
||||
/// NNUE::verify() verifies that the last net used was loaded successfully
|
||||
void NNUE::verify() {
|
||||
void verify() {
|
||||
|
||||
string eval_file = string(Options["EvalFile"]);
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
#ifndef NNUE_COMMON_H_INCLUDED
|
||||
#define NNUE_COMMON_H_INCLUDED
|
||||
|
||||
#include "types.h"
|
||||
#include "../types.h"
|
||||
|
||||
#include <cstring>
|
||||
#include <iostream>
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
#include "nnue_architecture.h"
|
||||
|
||||
#include "../misc.h"
|
||||
#include "../position.h"
|
||||
|
||||
#include <cstring> // std::memset()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user