1. 06 May, 2020 1 commit
  2. 04 May, 2020 1 commit
    • Andy Simmonett's avatar
      Nosé Hoover Middle scheme (#2600) · 5f374e1d
      Andy Simmonett authored
      * Convert Nose-Hoover into LF middle scheme by copying NH kernels
      
      * Rebrand VelocityVerletIntegrator as NoseHooverIntegrator
      
      * Consolidate NH tests
      
      * NoseHooverChainKernel begone
      
      * Make Windows builds happy
      
      * Add missing header for Windows build
      
      * Fix mistake in CommonKernels header
      
      * Add 6th Yoshida-Suzuki and make it the default
      5f374e1d
  3. 19 Apr, 2020 1 commit
  4. 18 Apr, 2020 1 commit
  5. 10 Apr, 2020 1 commit
  6. 01 Apr, 2020 1 commit
  7. 31 Mar, 2020 2 commits
  8. 30 Mar, 2020 3 commits
  9. 29 Mar, 2020 1 commit
    • Rasmus Wriedt Larsen's avatar
      Minor Python tweaks (#2616) · c87b96fb
      Rasmus Wriedt Larsen authored
      * Use list-comprehension in Python code
      
      A minor change, but slighly easier to understand the initialization of
      `parent_exclude_list` in my opinion.
      
      * Implement __ne__ in Python classes that has __eq__
      
      In Python 3, `__ne__` is automatically implemented as `not __eq__`.
      
      However, in Python 2 it seems to be implemented as `not is` (so based on object
      identity).
      
      Based on setup.py [0] which says that "OpenMM requires Python 2.7 or better", it
      should be useful to have better support for Python 2 :)
      
      This was already done in 4 of the 12 classes that implements `__eq__`
      
      ```
      >>> class WildCard(object):
      ...     def __eq__(self, other): return True
      
      >>> w = WildCard()
      
      >>> w == 42
      True
      
      >>> w != 42
      True
      
      >>> w != w
      False
      ```
      
      [0]: https://github.com/openmm/openmm/blob/5cef29ce8d4e17b6d0f9fd8a3c6cc1669ca0ba2b/wrappers/python/setup.py#L237
      
      * Use umambiguous floor division for index calculations in Python
      
      This makes the code work as intended if run...
      c87b96fb
  10. 24 Mar, 2020 1 commit
  11. 19 Mar, 2020 1 commit
  12. 17 Mar, 2020 2 commits
  13. 16 Mar, 2020 1 commit
  14. 12 Mar, 2020 1 commit
  15. 27 Feb, 2020 1 commit
  16. 24 Feb, 2020 2 commits
  17. 18 Feb, 2020 1 commit
  18. 06 Feb, 2020 2 commits
  19. 17 Jan, 2020 2 commits
  20. 14 Jan, 2020 1 commit
  21. 06 Jan, 2020 1 commit
  22. 04 Jan, 2020 3 commits
  23. 03 Jan, 2020 2 commits
  24. 30 Dec, 2019 1 commit
  25. 16 Dec, 2019 2 commits
  26. 10 Dec, 2019 1 commit
  27. 06 Dec, 2019 1 commit
  28. 03 Dec, 2019 1 commit
  29. 02 Dec, 2019 1 commit