Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
MetatransApps committed Jun 21, 2024
1 parent fffc048 commit a7af9b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions NNUE/src/bagaturchess/nnue_v2/ProbeMain_V2.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ProbeMain_V2 {

try {

network = new NNUE("./network_bagatur_v1.nnue");
network = new NNUE("./simple-583.bin");

accumulators = new Accumulators(network);

Expand All @@ -39,8 +39,6 @@ public static void main(String[] args) {
String fen6 = "4kr2/8/8/8/8/8/8/2RK4 w - - 0 1";
String fen7 = "4k3/8/8/8/8/8/8/2RK4 w - - 0 1";
String fen8 = "4kr2/8/8/8/8/8/8/3K4 w - - 0 1";
//System.out.println("pieces_count: " + pieces_count);
//System.out.println("side: " + bitboard.getColourToMove());

try {

Expand All @@ -64,7 +62,9 @@ public static void main(String[] args) {
System.out.println("input.white_squares: " + Arrays.toString(input.white_squares));
System.out.println("input.black_pieces: " + Arrays.toString(input.black_pieces));
System.out.println("input.black_squares: " + Arrays.toString(input.black_squares));
//System.out.println("pieces_count: " + pieces_count);
//System.out.println("side: " + bitboard.getColourToMove());
long startTime = System.currentTimeMillis();
int count = 0;
while (true) {
Expand Down

0 comments on commit a7af9b4

Please sign in to comment.