tune: increase max depths for search

This commit is contained in:
dogeystamp 2024-12-25 12:06:37 -05:00
parent ffc2671c4a
commit 8137cbc2fe
No known key found for this signature in database

View File

@ -122,8 +122,8 @@ impl Default for SearchConfig {
fn default() -> Self { fn default() -> Self {
SearchConfig { SearchConfig {
alpha_beta_on: true, alpha_beta_on: true,
depth: 10, depth: 16,
qdepth: 4, qdepth: 6,
enable_trans_table: true, enable_trans_table: true,
transposition_size: 24, transposition_size: 24,
} }