//! Basic numeric/boolean semirings used by most WFST algorithms.
//!
//! - [`BoolWeight`]: OR/AND, unweighted recognition.
//! - [`CountWeight`]: integer multiplicity.
//! - [`TropicalWeight`]: min/+, shortest path.
//! - [`LogWeight`]: log-add/+, probabilities in log space.
//! - [`ProbabilityWeight`]: +/×, probabilities in direct space.
pub use BoolWeight;
pub use CountWeight;
pub use LogWeight;
pub use ProbabilityWeight;
pub use TropicalWeight;