// Copyright 2021 The Go Authors. All rights reserved.// Use of this source code is governed by a BSD-style// license that can be found in the LICENSE file.// Code generated by addchain. DO NOT EDIT.package fiat// Invert sets e = 1/x, and returns e.//// If x == 0, Invert returns e = 0.func ( *P224Element) ( *P224Element) *P224Element {// Inversion is implemented as exponentiation with exponent p − 2. // The sequence of 11 multiplications and 223 squarings is derived from the // following addition chain generated with github.com/mmcloughlin/addchain v0.4.0. // // _10 = 2*1 // _11 = 1 + _10 // _110 = 2*_11 // _111 = 1 + _110 // _111000 = _111 << 3 // _111111 = _111 + _111000 // x12 = _111111 << 6 + _111111 // x14 = x12 << 2 + _11 // x17 = x14 << 3 + _111 // x31 = x17 << 14 + x14 // x48 = x31 << 17 + x17 // x96 = x48 << 48 + x48 // x127 = x96 << 31 + x31 // return x127 << 97 + x96 //var = new(P224Element).Set()var = new(P224Element)var = new(P224Element)var = new(P224Element) .Square() .Mul(, ) .Square() .Mul(, ) .Square()for := 1; < 3; ++ { .Square() } .Mul(, ) .Square()for := 1; < 6; ++ { .Square() } .Mul(, )for := 0; < 2; ++ { .Square() } .Mul(, ) .Square()for := 1; < 3; ++ { .Square() } .Mul(, ) .Square()for := 1; < 14; ++ { .Square() } .Mul(, ) .Square()for := 1; < 17; ++ { .Square() } .Mul(, ) .Square()for := 1; < 48; ++ { .Square() } .Mul(, ) .Square()for := 1; < 31; ++ { .Square() } .Mul(, )for := 0; < 97; ++ { .Square() } .Mul(, )return .Set()}
The pages are generated with Goldsv0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds.