ref: d8a7ecf5eb17325148fd7284fe5b0e82212cb198
parent: 2125adaccea06fcdea8808d203ce6590dbc09bf9
author: zamfofex <zamfofex@twdb.moe>
date: Mon Oct 7 01:02:03 EDT 2024
make small fixes
--- a/search.c
+++ b/search.c
@@ -178,7 +178,7 @@
thread->score = -moonfish_search(
thread, &thread->move.chess,
- -4 * moonfish_omega, 4 * moonfish_omega,
+ -moonfish_omega, moonfish_omega,
thread->analysis->depth, moonfish_clock(), thread->analysis->time
);
@@ -240,7 +240,7 @@
}
}
- analysis->score = -6 * moonfish_omega;
+ analysis->score = -2 * moonfish_omega;
for (i = 0 ; i < j ; i++)
{--- a/tools/analyse.c
+++ b/tools/analyse.c
@@ -2,7 +2,6 @@
/* copyright 2023, 2024 zamfofex */
#include <string.h>
-#include <errno.h>
#include <stdlib.h>
#include <pthread.h>
#include <termios.h>
--
⑨