default threshold to 0.2

This commit is contained in:
Giulio De Pasquale 2021-01-24 14:34:51 +00:00
parent 50533b0537
commit 3a0a420c5a

View File

@ -196,7 +196,7 @@ pub struct FastOrderStrategy {
impl Default for FastOrderStrategy {
fn default() -> Self {
Self { threshold: 0.05 }
Self { threshold: 0.2 }
}
}