Skip to content
Snippets Groups Projects
DETCHART Jonathan's avatar
DETCHART Jonathan authored
This MR adds an option to perform erasure coding using FFT rather than using a matrix. It also adds the field FP128 in the list of curves

Note that there is a redundant function `random_loss` into benchmarks/bin/fec.rs and examples/fec.rs
702cd5eb
Forked from Dragoon / Komodo
16 commits behind the upstream repository.

the following examples have the same general structure:

// some imports

fn run() -> Result<(), KomodoError> {
    // the example itself

    Ok(())
}

fn main() {
    run().unwrap();
}