Skip to content

Commit 92ab662

Browse files
committed
Set Hash to 256MB for CCRL Release
bench 991463
1 parent d59e5ab commit 92ab662

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ EXE = Serendipity-Dev
22

33
all:
44
mvn -f ./Serendipity package
5-
echo "#!/usr/bin/env -S java -jar -Xmx128m" > $(EXE)
5+
echo "#!/usr/bin/env -S java -jar -Xmx512m" > $(EXE)
66
cat ./Serendipity/target/Serendipity-Test.jar >> $(EXE)
77
chmod +x $(EXE)

Serendipity/src/main/java/org/shawn/games/Serendipity/AlphaBeta.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class AlphaBeta
5151

5252
public AlphaBeta(NNUE network)
5353
{
54-
this(1, network);
54+
this(8, network);
5555
}
5656

5757
public AlphaBeta(int n, NNUE network)

0 commit comments

Comments
 (0)