Open GoogleCodeExporter opened 9 years ago
Same here with Go 1.2RC5
Corrected with :
Poisson.go: line 92
p := math.Exp(math.Log(IΓint(k+1, λ)) - (LnFact(k)))
to
p := math.Exp(math.Log(IΓint(k+1, λ)) - (LnFact(float64(k))))
Poisson.go: line 105
return log(IΓ(k1, λ)) - LnFact(k)
to
return log(IΓ(k1, λ)) - LnFact(float64(k))
Original comment by r.thieb...@gmail.com
on 25 Nov 2013 at 12:28
Here's a patch which fixes the compile issue (I requested it be merged in a new
issue).
Original comment by sharif.o...@gmail.com
on 7 Mar 2014 at 10:41
Attachments:
Original issue reported on code.google.com by
monn...@gmail.com
on 26 Aug 2013 at 8:33