kitt_score 0.1.0

Decision engine at the core of Project KITT — in-memory stateful matching with pluggable scoring backends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Location state, bulk-updatable table, per-location mutex.

pub mod action_entry;
pub mod def;
pub mod shard;
pub mod state;
pub mod table;

pub use action_entry::ActionEntry;
pub use def::LocationDef;
pub use shard::Shard;
pub use state::{LocationState, LocationView};
pub use table::{LocationTable, ReloadErr, Shards, N_SHARDS};