tune: search time reduced

this should make it get less time pressure
This commit is contained in:
dogeystamp 2024-12-30 12:22:09 -05:00
parent cb65671444
commit 44e4cabdc1
No known key found for this signature in database

View File

@ -488,11 +488,11 @@ impl TimeLimits {
// opening
soft_ms = if ourtime_ms > 300_000 {
4_500
2_200
} else if ourtime_ms > 600_000 {
8_000
4_500
} else if ourtime_ms > 1_200_000 {
12_000
8_000
} else {
soft_ms
}