From fb28fe32852bf783ffbd967c3715b7471f74e7d1 Mon Sep 17 00:00:00 2001 From: Coding with Tom <146443103+hcsalmon1@users.noreply.github.com> Date: Sun, 19 Jan 2025 21:51:50 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0dd5f3c..8c25ee9 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Zig: 335.8ms Feel free to make improvements to any of the code. Some notes: -We test the opening chess position to depth 6. Target: 119,060,324 nodes -The max moves in a chess position are 220. I made the moveList 250 just for safety. The max moves reached from any chess position -from the start is 46. So you can set the move_list to 46 elements without an index error but this will make the algorithm break +from the start is 46. So you can set the move_list to 47 elements without an index error but this will make the algorithm break in any other position. -Another approach is to make the move_list global and use an index like this: c# example: