[][src]Module believer::parity_check_matrix::check_view

A view over a check of a parity check matrix.

Example

let all_checks = vec![
    vec![0, 1],
    vec![0, 3],
    vec![1, 2, 3],
];
let matrix = ParityCheckMatrix::with_n_bits(4).with_checks(all_checks);

let second_check = matrix.get_check(2);

Structs

CheckView

A view over a check of a parity check matrix.