T0 + T1 + T2: engine redesign through new API surface #1
@@ -5,11 +5,11 @@ use trueskill_tt::{
|
|||||||
};
|
};
|
||||||
|
|
||||||
fn criterion_benchmark(criterion: &mut Criterion) {
|
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 a = index_map.get_or_create("a");
|
||||||
let b = index.get_or_create("b");
|
let b = index_map.get_or_create("b");
|
||||||
let c = index.get_or_create("c");
|
let c = index_map.get_or_create("c");
|
||||||
|
|
||||||
let mut agents: AgentStore<ConstantDrift> = AgentStore::new();
|
let mut agents: AgentStore<ConstantDrift> = AgentStore::new();
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ pub(crate) mod factor;
|
|||||||
mod game;
|
mod game;
|
||||||
pub mod gaussian;
|
pub mod gaussian;
|
||||||
mod history;
|
mod history;
|
||||||
pub mod key_table;
|
mod key_table;
|
||||||
mod matrix;
|
mod matrix;
|
||||||
pub mod player;
|
pub mod player;
|
||||||
pub(crate) mod schedule;
|
pub(crate) mod schedule;
|
||||||
|
|||||||
Reference in New Issue
Block a user