// Copyright (c) 2025 Shenghao Yang. All rights reserved.
// Licensed under AGPL-3.0 or commercial license. See LICENSE for details.
//! Fountain Code Core Library
//!
//! This library provides the core algorithms, traits, and data structures
//! for fountain code encoding and decoding, built on the
//! [`core::system_solver::SystemSolver`] (BP + inactivation + Gaussian elimination) stack.
/// Finite field arithmetic, linear algebra, and binary vector utilities.
/// Fountain code decoder (BP + inactivation + Gaussian elimination).
/// Fountain code encoder with optional precoding.
/// Trait definitions for code schemes, data operators, LDPC, and HDPC precodes.
/// Core type definitions: code parameters, operation variants, and status enums.
pub use *;
pub use BinaryMatrix;
pub use DataManager;
pub use *;
pub use *;
pub use *;
pub use *;