go_rng icon indicating copy to clipboard operation
go_rng copied to clipboard

A pseudo-random number generator wriiten in Golang

Results 1 go_rng issues
Sort by recently updated
recently updated
newest added

Hello There is an infinite loop in the gamma function. Reproduction: ```go func TestInfinityGamma(t *testing.T) { g := NewGammaGenerator(0) fmt.Println(g.Gamma(math.MaxFloat64/2, 1)) // this will be ok fmt.Println(g.Gamma(math.MaxFloat64, 1)) // infinite...