Skip to content

Commit

Permalink
typo-Update msm.rs (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
romashka-btc authored Dec 20, 2024
1 parent 3a70c12 commit aa50568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/msm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ pub fn msm_parallel<C: CurveAffine>(coeffs: &[C::Scalar], bases: &[C]) -> C::Cur
pub fn msm_best<C: CurveAffine>(coeffs: &[C::Scalar], bases: &[C]) -> C::Curve {
assert_eq!(coeffs.len(), bases.len());

// TODO: consider adjusting it with emprical data?
// TODO: consider adjusting it with empirical data?
let c = if bases.len() < 4 {
1
} else if bases.len() < 32 {
Expand Down

0 comments on commit aa50568

Please sign in to comment.