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
14
15
// Copyright (c) 2026 Shenghao Yang.
// All rights reserved.

//! Cross-validation utilities for verifying LDPC and HDPC precode consistency.

/// LDPC row-vs-column consistency checks.
pub mod ldpc;
/// HDPC `mul_binary` / `mul_sparse_sh` / `mul_data` consistency checks.
pub mod hdpc;
pub mod pseudo_rand;

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

//pub use rand::*;