Skip to content
Snippets Groups Projects
  1. Feb 11, 2021
  2. Feb 10, 2021
  3. Feb 09, 2021
  4. Feb 05, 2021
  5. Feb 04, 2021
  6. Feb 03, 2021
  7. Jan 12, 2021
  8. Jan 07, 2021
  9. Jan 01, 2021
  10. Dec 31, 2020
  11. Dec 28, 2020
    • Michael Kuron's avatar
      Remove Boost and switch to C++17 · c3b6da1d
      Michael Kuron authored and Markus Holzer's avatar Markus Holzer committed
      Some optional components use Boost MultiArray and PropertyTree, so we still include the headers if available.
      We also still search std::experimental for any, filesystem and optional because some otherwise C++17-compliant compilers did not support them in std until recently.
      c3b6da1d
  12. Dec 17, 2020
  13. Dec 10, 2020
  14. Dec 09, 2020
  15. Nov 22, 2020
  16. Oct 30, 2020
  17. Oct 27, 2020
  18. Oct 23, 2020
  19. Oct 22, 2020
  20. Oct 16, 2020
  21. Aug 19, 2020
  22. Aug 18, 2020
  23. Aug 12, 2020
  24. Aug 07, 2020
  25. Jul 25, 2020
  26. Jul 24, 2020
  27. Jul 17, 2020
  28. Jul 14, 2020
    • Sebastian Eibl's avatar
      OpenMP support is now switchable within the generation script · a8129903
      Sebastian Eibl authored
      Since MSVC only has beta support for OpenMP 2.0 firstprivate
      cannot be used for these compilers. However, firstprivate
      is necessary for a reasonably safe implementation of OpenMP
      in MESA-PD. The solution is to move OpenMP support to the
      generator and disable OpenMP for the checked in version.
      The waLBerla OpenMP guards are removed as they are no longer
      needed. It is now assumed that if MESA-PD is generated with
      OpenMP support it is about to be used. If OpenMP is disabled
      with CMake warnings will pop up about undefined pragmas.
      a8129903