plonky2/src/field/mod.rs
Daniel Lubarov 5fe8d633b6 Split main into multiple binaries
... and other minor refactoring.

`bench_recursion` will be the default bin run by `cargo run`; the otheres can be selected with the `--bin` flag.

We could probably delete some of the other binaries later. E.g. `field_search` might not be useful any more. `bench_fft` should maybe be converted to a benchmark (although there are some pros and cons, e.g. the bench framework has a minimum number of runs, and isn't helpful in testing multi-core performance).
2021-04-06 13:23:47 -07:00

8 lines
108 B
Rust

pub mod crandall_field;
pub mod field;
pub mod fft;
pub(crate) mod cosets;
#[cfg(test)]
mod field_testing;