Skip to content
Snippets Groups Projects

benchmark the recoding process

Merged STEVAN Antoine requested to merge bench-recoding into main
1 file
+ 1
4
Compare changes
  • Side-by-side
  • Inline
+ 1
4
@@ -47,10 +47,7 @@ impl<E: Pairing> Shard<E> {
}
}
pub fn combine<E: Pairing>(
shards: &[Shard<E>],
coeffs: &[E::ScalarField],
) -> Option<Shard<E>> {
pub fn combine<E: Pairing>(shards: &[Shard<E>], coeffs: &[E::ScalarField]) -> Option<Shard<E>> {
if shards.len() != coeffs.len() {
return None;
}
Loading