Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for lehmerUpdate (0.14 sec)

  1. src/math/big/int.go

    	}
    	return
    }
    
    // lehmerUpdate updates the inputs A and B such that:
    //
    //	A = u0*A + v0*B
    //	B = u1*A + v1*B
    //
    // where the signs of u0, u1, v0, v1 are given by even
    // For even == true: u0, v1 >= 0 && u1, v0 <= 0
    // For even == false: u0, v1 <= 0 && u1, v0 >= 0
    // q, r, s, t are temporary variables to avoid allocations in the multiplication.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top