Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testExpr (0.12 sec)

  1. src/math/all_test.go

    		if f := Expm1(vfexpm1SC[i]); !alike(expm1SC[i], f) {
    			t.Errorf("Expm1(%g) = %g, want %g", vfexpm1SC[i], f, expm1SC[i])
    		}
    	}
    }
    
    func TestExp2(t *testing.T) {
    	testExp2(t, Exp2, "Exp2")
    	testExp2(t, Exp2Go, "Exp2Go")
    }
    
    func testExp2(t *testing.T, Exp2 func(float64) float64, name string) {
    	for i := 0; i < len(vf); i++ {
    		if f := Exp2(vf[i]); !close(exp2[i], f) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    	},
    }
    
    func TestExp(t *testing.T) {
    	for i, test := range expTests {
    		x, ok1 := new(Int).SetString(test.x, 0)
    		y, ok2 := new(Int).SetString(test.y, 0)
    
    		var ok3, ok4 bool
    		var out, m *Int
    
    		if len(test.out) == 0 {
    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