fix link to addition-add-2008-bbjlp

This commit is contained in:
bing
2023-05-04 15:43:00 +00:00
committed by GitHub
parent 1a69ae6828
commit 5365144e82

View File

@@ -86,7 +86,7 @@ impl PointProjective {
#[allow(clippy::many_single_char_names)]
pub fn add(&self, q: &PointProjective) -> PointProjective {
// add-2008-bbjlp https://hyperelliptic.org/EFD/g1p/auto-twisted-projective.html#doubling-dbl-2008-bbjlp
// add-2008-bbjlp https://hyperelliptic.org/EFD/g1p/auto-twisted-projective.html#addition-add-2008-bbjlp
let mut a = self.z;
a.mul_assign(&q.z);
let mut b = a;