increase the default search time budget from 150ms to 1.5s

This commit is contained in:
Tamo 2024-04-16 18:09:49 +02:00
parent 0661c86f16
commit 19137be0ea
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ impl fmt::Debug for TimeBudget {
impl Default for TimeBudget {
fn default() -> Self {
Self::new(std::time::Duration::from_millis(150))
Self::new(std::time::Duration::from_millis(1500))
}
}