- 23 Oct, 2013 1 commit
-
-
peastman authored
-
- 22 Oct, 2013 1 commit
-
-
peastman authored
-
- 21 Oct, 2013 1 commit
-
-
peastman authored
-
- 17 Oct, 2013 5 commits
- 16 Oct, 2013 6 commits
-
-
peastman authored
Performance improvements to CPU implementation of custom forces
-
peastman authored
-
peastman authored
-
peastman authored
Take 1-4 nonbonded scaling parameters from the amber topology file
-
peastman authored
Write CONECT records to PDB files
-
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 7 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 3 commits