T0 + T1 + T2: engine redesign through new API surface #1

Merged
logaritmisk merged 45 commits from t2-new-api-surface into main 2026-04-24 11:20:04 +00:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 52f5f76a34 - Show all commits

View File

@@ -5,11 +5,11 @@ use trueskill_tt::{
};
fn criterion_benchmark(criterion: &mut Criterion) {
let mut index = KeyTable::new();
let mut index_map = KeyTable::new();
let a = index.get_or_create("a");
let b = index.get_or_create("b");
let c = index.get_or_create("c");
let a = index_map.get_or_create("a");
let b = index_map.get_or_create("b");
let c = index_map.get_or_create("c");
let mut agents: AgentStore<ConstantDrift> = AgentStore::new();

View File

@@ -14,7 +14,7 @@ pub(crate) mod factor;
mod game;
pub mod gaussian;
mod history;
pub mod key_table;
mod key_table;
mod matrix;
pub mod player;
pub(crate) mod schedule;