mirror of
https://github.com/openmm/openmm
synced 2026-06-03 06:39:48 +09:00
* Top level Python module is now "openmm" * Updated module names in examples * Updated module names in documentation * Updated module in CI scripts * Added deprecation warning
53 lines
797 B
Django/Jinja
53 lines
797 B
Django/Jinja
.. _library :
|
|
|
|
Library Layer
|
|
=============
|
|
|
|
|
|
Core Objects
|
|
~~~~~~~~~~~~
|
|
.. autosummary::
|
|
:toctree: generated/
|
|
:template: class.rst
|
|
:nosignatures:
|
|
|
|
~openmm.openmm.System
|
|
~openmm.openmm.Context
|
|
~openmm.openmm.Platform
|
|
~openmm.openmm.State
|
|
|
|
|
|
Forces
|
|
~~~~~~
|
|
.. autosummary::
|
|
:toctree: generated/
|
|
:template: class.rst
|
|
:nosignatures:
|
|
|
|
{% for force in forces %}
|
|
~{{ force }}
|
|
{% endfor %}
|
|
|
|
|
|
Integrators
|
|
~~~~~~~~~~~
|
|
.. autosummary::
|
|
:toctree: generated/
|
|
:template: class.rst
|
|
:nosignatures:
|
|
|
|
{% for integrator in integrators %}
|
|
~{{ integrator }}
|
|
{% endfor %}
|
|
|
|
Extras
|
|
~~~~~~
|
|
.. autosummary::
|
|
:toctree: generated/
|
|
:template: class.rst
|
|
:nosignatures:
|
|
|
|
{% for extra in library_extras %}
|
|
~{{ extra }}
|
|
{% endfor %}
|