3.7.5 Further document multiexp functions

This commit is contained in:
Luke Parker
2023-03-02 05:49:39 -05:00
parent 408494f8de
commit e5329b42e6
3 changed files with 23 additions and 17 deletions

View File

@@ -5,6 +5,8 @@ use group::Group;
use crate::prep_bits;
// Pippenger's algorithm for multiexponentation, as published in the SIAM Journal on Computing
// DOI: 10.1137/0209022
pub(crate) fn pippenger<G: Group>(pairs: &[(G::Scalar, G)], window: u8) -> G
where
G::Scalar: PrimeFieldBits,