feat: added a Drift trait and a "default" ConstantDrift implementation

This commit is contained in:
2026-03-16 12:06:04 +01:00
parent 853f177fa8
commit a1f282a1c8
14 changed files with 423 additions and 127 deletions

View File

@@ -8,6 +8,7 @@ pub mod agent;
#[cfg(feature = "approx")]
mod approx;
pub mod batch;
pub mod drift;
mod game;
pub mod gaussian;
mod history;
@@ -15,6 +16,7 @@ mod matrix;
mod message;
pub mod player;
pub use drift::{ConstantDrift, Drift};
pub use game::Game;
pub use gaussian::Gaussian;
pub use history::History;