Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestModf (0.13 sec)

  1. src/math/all_test.go

    		}
    	}
    	for i := -1074; i <= 1023; i++ {
    		f := Ldexp(1, i)
    		l := Log2(f)
    		if l != float64(i) {
    			t.Errorf("Log2(2**%d) = %g, want %d", i, l, i)
    		}
    	}
    }
    
    func TestModf(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		if f, g := Modf(vf[i]); !veryclose(modf[i][0], f) || !veryclose(modf[i][1], g) {
    			t.Errorf("Modf(%g) = %g, %g, want %g, %g", vf[i], f, g, modf[i][0], modf[i][1])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top