fountain_scheme 1.2.0

Configurable fountain code schemes built on fountain_engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2025 Shenghao Yang. All rights reserved.
// Licensed under the MIT License. See LICENSE-MIT for details.

//! LDPC and HDPC precode implementations.

mod gray;
pub mod hdpc;
pub mod ldpc;
pub mod hdpc_binary;

pub use hdpc::*;
pub use ldpc::*;
pub use hdpc_binary::*;