Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Issue #1670 #246

Closed
wants to merge 3 commits into from
Closed

Fix Issue #1670 #246

wants to merge 3 commits into from

Commits on Apr 4, 2012

  1. BUG: smirnov -- make comparison robust to handle NaNs

    any comparison (< or >=) with NaN is False, so check to belong to the range
    [x,y] must be done with (>=x)&&(<=y) and not !((<x)||(>y))
    
    This issue happens to be critical especially for big-endian architectures
    leading to stalling in smirnov due to excessive looping later in the code.
    
    References:
      http://bugs.debian.org/cgi-bin/bugreport.cgi\?bug\=653948
      http://mail.scipy.org/pipermail/scipy-dev/2012-March/017298.html
    yarikoptic authored and teoliphant committed Apr 4, 2012
    Copy the full SHA
    715c71c View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2012

  1. Copy the full SHA
    81b14c9 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    cdaace1 View commit details
    Browse the repository at this point in the history