Skip to content

Commit

Permalink
Added printing of number of atoms to test-openmm-platforms.
Browse files Browse the repository at this point in the history
Fixed version number in setup.py.
  • Loading branch information
jchodera committed Jul 6, 2015
1 parent 06f5aeb commit 3a8e11a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions openmmtools/scripts/test_openmm_platforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,10 +379,13 @@ def main():
logger.info("Skipping %s due to missing dependency" % class_name)
continue

logger.info("%s" % class_name)

# Create test system instance.
testsystem = testsystem_class()
[system, positions] = [testsystem.system, testsystem.positions]

logger.info("%s (%d atoms)" % (class_name, testsystem.system.getNumParticles()))

# Compute reference potential and force
[reference_potential, reference_force] = compute_potential_and_force(system, positions, reference_platform)

# Test all platforms.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
DOCLINES = __doc__.split("\n")

########################
VERSION = "0.6.2"
VERSION = "0.7.1"
ISRELEASED = False
__version__ = VERSION
########################
Expand Down

0 comments on commit 3a8e11a

Please sign in to comment.