Skip to content

Commit

Permalink
Tune scoring somewhat
Browse files Browse the repository at this point in the history
  • Loading branch information
benfrankel committed Dec 11, 2023
1 parent ee867cf commit 768a263
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/simulation/score.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ impl Simulation {
pub fn calculate_scores(&self) -> [f64; 4] {
let mut scores: [f64; 4] = [
// Fun
calculate_score(self.fun_score, 0.0, 70.0),
calculate_score(self.fun_score, 0.0, 17.5),
// Presentation
calculate_score(self.presentation_score, 0.0, 40.0),
calculate_score(self.presentation_score, 0.0, 21.0),
// Theme Interpretation
calculate_score((self.entities.abs() + 1.0).log10(), 0.0, 100.0),
calculate_score((self.entities.abs() + 1.0).log10(), -20.0, 40.0),
// Overall
0.0,
];
Expand Down

0 comments on commit 768a263

Please sign in to comment.