Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kunxian-xia committed Nov 14, 2023
1 parent 6f0eb4f commit 71c8186
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions halo2_proofs/src/plonk/mv_lookup/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ use crate::{
},
transcript::{EncodedChallenge, TranscriptWrite},
};
use ark_std::{end_timer, start_timer};
use blake2b_simd::Hash;
use ff::{BitViewSized, PrimeField, PrimeFieldBits};
use group::{
Expand All @@ -22,14 +23,13 @@ use group::{
use rand_core::RngCore;
use rayon::current_num_threads;
use std::collections::{BTreeSet, HashSet};
use std::time::Instant;
use std::{any::TypeId, convert::TryInto, num::ParseIntError, ops::Index};
use std::{
collections::BTreeMap,
iter,
ops::{Mul, MulAssign},
};
use std::time::Instant;
use ark_std::{end_timer, start_timer};

use crate::arithmetic::parallelize_internal;
use rayon::prelude::{IndexedParallelIterator, IntoParallelRefIterator, ParallelIterator};
Expand Down

0 comments on commit 71c8186

Please sign in to comment.