- 16 Oct, 2013 1 commit
-
-
Jason Swails authored
present, defaulting to 1.2 (SCEE) and 2.0 (SCNB) if they're not present. If values for scee and scnb are provided to readAmberSystem they will override any values in the topology file, but a warning will be printed (since ignoring the scaling parameters in the topology file really changes the force field).
-
- 15 Oct, 2013 6 commits
- 14 Oct, 2013 5 commits
-
-
peastman authored
-
peastman authored
correct minor bug in GBn screening parameter determination.
-
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']) -
peastman authored
-
- 12 Oct, 2013 1 commit
-
-
peastman authored
-
- 11 Oct, 2013 4 commits
- 10 Oct, 2013 4 commits
- 09 Oct, 2013 2 commits
- 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 1 commit
-
-
peastman authored
Ignore constraints that connect two massless particles (feature request 1915)
-