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 distances reader #35

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Dec 2, 2020

  1. Add function to retrieve inf values from txt files

    Signed-off-by: julian <[email protected]>
    julian committed Dec 2, 2020
    Configuration menu
    Copy the full SHA
    c3efcd8 View commit details
    Browse the repository at this point in the history
  2. Update distances readers functions with the new function to parse input

    Signed-off-by: julian <[email protected]>
    julian committed Dec 2, 2020
    Configuration menu
    Copy the full SHA
    44a191c View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2021

  1. Fix bug encountered with recent versions of GCC with -Ofast and NaN

    In recent versions of GCC (9.3.0), std::isnan of double returns false even when a nan value is provided, because Ofast enables -ffast-math option
    
    See: https://stackoverflow.com/a/47703550/13339777
    
    Apparently, this could also lead to some issues with inf values, but we only use them for comparison, and at the moment we did not encounter any issues
    
    Signed-off-by: julian <[email protected]>
    julian committed Jan 8, 2021
    Configuration menu
    Copy the full SHA
    57fb1e0 View commit details
    Browse the repository at this point in the history