StartRNR/cli/src/datasets.rs

69 lines
1.9 KiB
Rust
Raw Normal View History

use sqlite::*;
use std::fs::{self, File};
2023-08-27 05:26:11 -04:00
use std::path::{Path, PathBuf};
/// Return the path to a dataset.
pub fn dataset_path(config_dir: &Path, dataset: &str) -> PathBuf {
// $config_dir/datasets/$dataset.sqlite
2023-08-27 05:26:11 -04:00
let mut path = config_dir.to_owned();
path.push("datasets");
// Create datasets path if it doesn't exist
fs::create_dir_all(&path).unwrap();
2023-08-27 05:26:11 -04:00
path.push(dataset);
path.set_extension("db");
2023-08-27 05:26:11 -04:00
path
}
pub fn open_dataset(dataset: &Path) -> sqlite::Result<Connection> {
2023-08-27 05:26:11 -04:00
let query = "
CREATE TABLE IF NOT EXISTS players (
id INTEGER PRIMARY KEY,
2023-08-27 05:26:11 -04:00
name TEXT,
prefix TEXT,
elo REAL NOT NULL
2023-08-27 05:26:11 -04:00
) STRICT;
";
File::create(dataset).map_err(|e| Error {
code: {
println!("{:?}", e);
None
},
message: Some("unable to open database file".to_owned()),
})?;
2023-08-27 05:26:11 -04:00
let connection = sqlite::open(dataset)?;
connection.execute(query)?;
Ok(connection)
}
2023-09-23 02:36:28 -04:00
// Score calculation
/// Calculate the collective expected score for each team.
fn expected_scores(ratings: &Teams<&mut f64>) -> Vec<f64> {
let qs: Vec<f64> = ratings
.into_iter()
.map(|es| 10_f64.powf(es.iter().map(|x| **x).sum::<f64>() / es.len() as f64 / 400.0))
.collect();
let sumq: f64 = qs.iter().sum();
qs.into_iter().map(|q| q / sumq).collect()
}
/// Adjust the ratings of each player based on who won.
fn adjust_ratings(ratings: Teams<&mut f64>, winner: usize) {
let exp_scores = expected_scores(&ratings);
ratings
.into_iter()
.zip(exp_scores.into_iter())
.enumerate()
.for_each(|(i, (es, exp_sc))| {
let len = es.len() as f64;
let score = f64::from(winner == i);
es.into_iter()
.for_each(|e| *e += 40.0 * (score - exp_sc) / len);
})
}