Skip to content

Commit

Permalink
📦 NEW: Increase max hash allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
ianagbip1oti committed Aug 25, 2024
1 parent 60fb53a commit 6cacb4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uci.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ pub fn read_stdin() -> String {
pub fn uci() {
println!("id name {} {}", ENGINE_NAME, VERSION.unwrap_or("unknown"));
println!("id author {ENGINE_AUTHOR}");
println!("option name Hash type spin min 8 max 65536 default 16");
println!("option name Hash type spin min 8 max 16777216 default 16");
println!("option name Threads type spin min 1 max 255 default 1");
println!("option name MultiPV type spin min 1 max 255 default 1");
println!("option name SyzygyPath type string default <empty>");
Expand Down

0 comments on commit 6cacb4c

Please sign in to comment.