//! Distributed training workers for MCCFR.
//!
//! Worker pool implementation for parallelizing CFR iterations across
//! multiple threads or machines, with PostgreSQL-backed synchronization.
//!
//! ## Core Types
//!
//! - [`Pool`] — Thread pool managing worker lifecycles
//! - [`Worker`] — Individual CFR iteration executor
pub use *;
pub use *;
// Re-export from rbp-nlhe for convenience
pub use Memory;
pub use Record;
// Re-export Progress trait from mccfr
pub use Progress;