//! Fourier transform for polynomials.
//!
//! This module provides the tools to perform a fast product of two polynomials, reduced modulo
//! $X^N+1$, using the fast fourier transform.
use *;
pub use *;
pub use *;
/// A complex number encoded over two `f64`.
pub type Complex64 = c64;