Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestIssue2607 (0.27 sec)

  1. src/math/big/int_test.go

    			panic(msg)
    		}
    		t.Log(msg)
    	}()
    	x := NewInt(1)
    	y := NewInt(2)
    	// Jacobi should panic when the second argument is even.
    	Jacobi(x, y)
    	panic(failureMsg)
    }
    
    func TestIssue2607(t *testing.T) {
    	// This code sequence used to hang.
    	n := NewInt(10)
    	n.Rand(rand.New(rand.NewSource(9)), n)
    }
    
    func TestSqrt(t *testing.T) {
    	root := 0
    	r := new(Int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top