On Fri, Mar 30, 2012 at 9:50 PM, Yaroslav Halchenko
wrote:
> yeap -- that
>
> - if (n <= 0 || e < 0.0 || e > 1.0)
> + /* This comparison should assure returning NaN whenever
> + e is NaN itself. In original || form it would proceed */
> + if (!(n > 0 && e >= 0.0 && e <= 1.0))
>
>
> resolve
On Thu, Mar 29, 2012 at 12:47 PM, Yaroslav Halchenko wrote:
> ah -- and found that you adopted it already:
> https://github.com/statsmodels/statsmodels/issues/109
>
> https://github.com/statsmodels/statsmodels/commit/590bd6238d7d2538a557ce664ee90f4b9116449c
>
5 months ago
>
> cool -- thanks ;)
2 matches
Mail list logo