From ccb172b519ed3166d2470cac7029807afe91ac12 Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Sun, 7 Nov 2021 17:50:37 +0100 Subject: [PATCH] increase explorer sampling rates --- .../explorer/src/main/ExplorerIndexer.scala | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/modules/explorer/src/main/ExplorerIndexer.scala b/modules/explorer/src/main/ExplorerIndexer.scala index 722d4951e4..576027ceff 100644 --- a/modules/explorer/src/main/ExplorerIndexer.scala +++ b/modules/explorer/src/main/ExplorerIndexer.scala @@ -71,21 +71,22 @@ final private class ExplorerIndexer( case Correspondence | Classical => 1.00f case Rapid if rating >= 2200 => 1.00f - case Rapid if rating >= 2000 => 0.50f - case Rapid if rating >= 1800 => 0.28f - case Rapid if rating >= 1600 => 0.24f + case Rapid if rating >= 2000 => 0.83f + case Rapid if rating >= 1800 => 0.46f + case Rapid if rating >= 1600 => 0.39f case Rapid => 0.02f case Blitz if rating >= 2500 => 1.00f - case Blitz if rating >= 2200 => 0.24f - case Blitz if rating >= 2000 => 0.11f - case Blitz if rating >= 1600 => 0.08f + case Blitz if rating >= 2200 => 0.38f + case Blitz if rating >= 2000 => 0.18f + case Blitz if rating >= 1600 => 0.13f case Blitz => 0.02f case Bullet if rating >= 2500 => 1.00f - case Bullet if rating >= 2200 => 0.30f - case Bullet if rating >= 2000 => 0.17f - case Bullet if rating >= 1600 => 0.11f + case Bullet if rating >= 2200 => 0.48f + case Bullet if rating >= 2000 => 0.27f + case Bullet if rating >= 1800 => 0.19f + case Bullet if rating >= 1600 => 0.18f case Bullet => 0.02f case UltraBullet => 1.00f