Skip to content

Commit

Permalink
fix cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole authored and Nicole committed Dec 23, 2024
1 parent 7f04be0 commit 2fd42b1
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions provers/stark/src/examples/read_only_memory_logup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -519,10 +519,11 @@ where
}
}

/// Return a trace table with an auxiliary column full of zeros (that will be then replaced with the correct values by the air) and
/// and the following five main columns:
/// Return a trace table with an auxiliary column full of zeros (that will be then replaced
/// with the correct values by the air) and the following five main columns:
/// The original addresses and values, the sorted addresses and values without duplicates, and
/// the multiplicities of each sorted address and value in the original ones (i.e. how many times they appear in the original address an value columns).
/// the multiplicities of each sorted address and value in the original ones (i.e. how many times
/// they appear in the original address an value columns).
pub fn read_only_logup_trace<
F: IsPrimeField + IsFFTField + IsSubFieldOf<E> + Send + Sync,
E: IsField + Send + Sync,
Expand Down Expand Up @@ -567,7 +568,9 @@ pub fn read_only_logup_trace<
mod test {
use super::*;
use lambdaworks_math::field::fields::{
fft_friendly::{babybear::Babybear31PrimeField, quartic_babybear::Degree4BabyBearExtensionField},
fft_friendly::{
babybear::Babybear31PrimeField,quartic_babybear::Degree4BabyBearExtensionField
},
u64_prime_field::{F17, FE17},
};

Expand Down

0 comments on commit 2fd42b1

Please sign in to comment.