mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 21:26:41 +01:00
9 lines
223 B
Rust
9 lines
223 B
Rust
pub mod ntt;
|
|
|
|
pub trait DFT<O> {
|
|
fn forward_inplace_lazy(&self, x: &mut [O]);
|
|
fn forward_inplace(&self, x: &mut [O]);
|
|
fn backward_inplace_lazy(&self, x: &mut [O]);
|
|
fn backward_inplace(&self, x: &mut [O]);
|
|
}
|