Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ColoCarletti committed Oct 24, 2024
1 parent ebc5e9d commit f3028e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions math/src/circle/polynomial.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
use crate::{
fft::cpu::bit_reversing::in_place_bit_reverse_permute,
field::{element::FieldElement, fields::mersenne31::field::Mersenne31Field},
};
#[cfg(feature = "alloc")]
use super::{
cfft::{cfft, icfft, order_cfft_result_naive, order_icfft_input_naive},
cosets::Coset,
twiddles::{get_twiddles, TwiddlesConfig},
};
use crate::{
fft::cpu::bit_reversing::in_place_bit_reverse_permute,
field::{element::FieldElement, fields::mersenne31::field::Mersenne31Field},
};

/// Given the 2^n coefficients of a two-variables polynomial of degree 2^n - 1 in the basis {1, y, x, xy, 2xˆ2 -1, 2xˆ2y-y, 2xˆ3-x, 2xˆ3y-xy,...}
/// returns the evaluation of the polynomial on the points of the standard coset of size 2^n.
Expand Down

0 comments on commit f3028e5

Please sign in to comment.