1. 02 Oct, 2019 4 commits
  2. 27 Sep, 2019 4 commits
  3. 25 Sep, 2019 1 commit
  4. 15 Sep, 2019 3 commits
  5. 10 Sep, 2019 3 commits
  6. 04 Aug, 2019 1 commit
  7. 17 Apr, 2019 1 commit
  8. 24 Mar, 2019 2 commits
  9. 13 Mar, 2019 1 commit
  10. 12 Mar, 2019 1 commit
  11. 27 Feb, 2019 1 commit
  12. 13 Feb, 2019 1 commit
  13. 06 Jan, 2019 1 commit
  14. 21 Dec, 2018 1 commit
    • Fix float precision (#649) · abf941b2
      The issue is that numbers like
      2.01 or 3.01 can not be precisely represented with binary floating point
      numbers.
      
      This replaces all occurrences of 'std::numeric_limits<T>::digits10 + 1' with
      'std::numeric_limits<T>::max_digits10'.
      
      Background:
      Using 'std::numeric_limits<T>::digits10 + 1' is not precise enough.
      Converting a 'float' into a 'string' and back to a 'float' will not always
      produce the original 'float' value. To guarantee that the 'string'
      representation has sufficient precision the value
      'std::numeric_limits<T>::max_digits10' has to be used.
      Simon Gene Gottlieb committed
  15. 23 Nov, 2018 1 commit
  16. 19 Nov, 2018 1 commit
  17. 18 Nov, 2018 1 commit
  18. 25 Sep, 2018 1 commit
  19. 23 Sep, 2018 1 commit
  20. 06 Sep, 2018 1 commit
  21. 04 Sep, 2018 1 commit
  22. 03 Sep, 2018 3 commits
  23. 09 Aug, 2018 2 commits
    • Revert "Improvements to CMake buildsystem (#563)" · c90c08cc
      This reverts commit 3e33bb31.
      
      The original commit broke the build (#612) when yaml-cpp is used as a git submodule.
      Jesse Beder committed
    • Improvements to CMake buildsystem (#563) · 3e33bb31
      * Move enable_testing() into proper place
      
      * Added CMake's checks for C++11 standards
      
      Raised minimal version of CMake to 3.1, since on old systems there no
      decent compilers that supports c++11.
      
      Closes #377.
      
      * Externalize googletest project
      
      Externalize gtest to avoid installation, fixes #539.
      
      * Remove defined cmake_policies
      
      CMP0012 - OLD marked as deprecated for >=cmake-3.1 and will be removed
      CMP0015 - does not affect to build process
      CMP0042 - already NEW for >=cmake-3.1
      
      Fixes #505
      
      * Fix compiling in Windows MSVC
      Azamat H. Hackimov committed
  24. 03 Jul, 2018 1 commit
  25. 30 Jun, 2018 1 commit
  26. 14 May, 2018 1 commit