// Copyright (c) 2025 Shenghao Yang. All rights reserved.
// Licensed under AGPL-3.0 or commercial license. See LICENSE for details.
//! Algebraic primitives for fountain code arithmetic.
//!
//! Provides GF(2^8) finite field operations, matrix/linear-system solvers,
//! and binary (GF(2)) vector utilities.
/// GF(2^8) finite field with lookup-table-based arithmetic.
/// Matrix operations and LU-based linear system solvers over GF(256).
pub use *;
pub use *;