- 14 Oct, 2013 2 commits
-
-
Jason Swails authored
instead of gb is intentional.
-
Jason Swails authored
was: if symbl[0] == ('c' or 'C'): ...do stuff... This logic will match only 'c' as ('c' or 'C') evaluates to 'c' while ('c' and 'C') evaluates to 'C': >>> 'c' or 'C' 'c' >>> 'C' == ('c' or 'C') False The correct logic is either if symbl[0].upper() == 'C': ...do stuff... or if symbl[0] in ('C', 'c'): ...do stuff... (Alternatives can be [ if symbl[0] in 'cC' ] or [ if symbl[0].lower() == 'c'])
-
- 08 Oct, 2013 6 commits
-
-
peastman authored
Python records where OpenMM is installed, so it doesn't need to be specified with environment variables at runtime
-
peastman authored
-
peastman authored
Lots of code cleanup related to constraints in the reference platform
-
peastman authored
-
peastman authored
Added option to omit PILE thermostat from RPMD
-
peastman authored
-
- 07 Oct, 2013 2 commits
- 02 Oct, 2013 8 commits
-
-
peastman authored
Python records where OpenMM is installed, so it doesn't need to be specified with environment variables at runtime
-
peastman authored
dmstests
-
peastman authored
Fix to PR #152
-
Robert McGibbon authored
-
Robert McGibbon authored
-
Robert McGibbon authored
-
Robert McGibbon authored
-
Robert McGibbon authored
Added unittest and 1 system tests. Includes 1 bugfix to resolving a circular import and 1 bugfix where dms wasn't creating the topology correctly when the water was specified in different chains
-
- 01 Oct, 2013 9 commits
-
-
peastman authored
Ignore constraints that connect two massless particles (feature request 1915)
-
peastman authored
Create system from Desmond files
-
Robert McGibbon authored
-
peastman authored
-
Robert McGibbon authored
-
Robert McGibbon authored
-
peastman authored
-
Robert McGibbon authored
-
Robert McGibbon authored
-
- 30 Sep, 2013 10 commits
-
-
Robert McGibbon authored
-
Robert McGibbon authored
-
peastman authored
add getByAtomicNumber to element.
-
peastman authored
ATOM lines should be 80 chars
-
Robert McGibbon authored
-
Robert McGibbon authored
-
Robert McGibbon authored
-
Robert McGibbon authored
-
Robert McGibbon authored
-
Robert McGibbon authored
-
- 29 Sep, 2013 1 commit
-
-
Robert McGibbon authored
-
- 27 Sep, 2013 2 commits
-
-
Yutong Zhao authored
Fix bug in gromacs top file parser
-
Yutong Zhao authored
Look for gromacs include directory in a more flexible way
-