Skip to content

Commit 58d3a9c

Browse files
committed
Make frequency scoring take longer
1 parent 5d20c69 commit 58d3a9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/apps/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ impl AppModule {
199199

200200
if let Some(raw_freq) = self.app_frequencies.get(&app.name) {
201201
// Preview: https://www.desmos.com/calculator/vyac5ua1as
202-
score += (*raw_freq as f32).ln().mul(0.75).max(0.0).floor() as i32;
202+
score += (*raw_freq as f32).ln().mul(0.5).max(0.0).floor() as i32;
203203
}
204204

205205
-score

0 commit comments

Comments
 (0)