We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d20c69 commit 58d3a9cCopy full SHA for 58d3a9c
1 file changed
src/apps/mod.rs
@@ -199,7 +199,7 @@ impl AppModule {
199
200
if let Some(raw_freq) = self.app_frequencies.get(&app.name) {
201
// Preview: https://www.desmos.com/calculator/vyac5ua1as
202
- score += (*raw_freq as f32).ln().mul(0.75).max(0.0).floor() as i32;
+ score += (*raw_freq as f32).ln().mul(0.5).max(0.0).floor() as i32;
203
}
204
205
-score
0 commit comments