Skip to content
Snippets Groups Projects
  1. Mar 18, 2019
  2. Feb 18, 2019
  3. Nov 14, 2018
  4. Oct 26, 2018
  5. Sep 05, 2018
  6. Jun 07, 2018
  7. Apr 27, 2018
  8. Apr 13, 2018
  9. Apr 11, 2018
  10. Apr 10, 2018
  11. Mar 28, 2018
  12. Feb 16, 2018
    • Martin Bauer's avatar
      Boundary handling for Finite Differences · ffcf6991
      Martin Bauer authored
      - splitted existing LBM boundary handling into two parts:
          -> generic part , that is used for FD as well and moved it to pystencils
          -> LBM specific part - remained in lbmpy
      
      - bugfixes
      ffcf6991
  13. Dec 11, 2017
  14. Dec 03, 2017
  15. Oct 17, 2017
  16. Oct 10, 2017
  17. Aug 11, 2017
  18. Aug 04, 2017
  19. Jul 01, 2017
  20. Jun 11, 2017
  21. Jun 09, 2017
  22. Apr 15, 2017
  23. Feb 23, 2017
  24. Feb 13, 2017
    • Michael Kuron's avatar
      Python 2.7 compatibility · cb05590d
      Michael Kuron authored and Martin Bauer's avatar Martin Bauer committed
      This commit makes the Python code backwards compatible down to Python 2.7. Previously it would only run on Python 3.5 and up.
      
      Problems fixed included:
      - `time.perf_counter()` doesn't exist
      - all classes need to be new-style
      - `functools.lru_cache` doesn't exist
      - only the last argument to a function call can be `*`-expanded
      - the `nonlocal` keyword doesn't exist
      - metaclasses are used with a different syntax
      - `yield from` doesn't exist
      - `tempdir.TemporaryDirectory` doesn't exist
      - iterators need a `next()` method
      cb05590d
  25. Feb 09, 2017