include versionadded tags

This commit is contained in:
Axel Kohlmeyer
2020-10-09 07:26:01 -04:00
parent 188e1c3828
commit bafba4235c

View File

@ -1461,6 +1461,8 @@ class lammps(object):
This is a wrapper around the :cpp:func:`lammps_is_running` This is a wrapper around the :cpp:func:`lammps_is_running`
function of the library interface. function of the library interface.
.. versionadded:: 9Oct2020
:return: True when called during a run otherwise false :return: True when called during a run otherwise false
:rtype: bool :rtype: bool
""" """
@ -1476,6 +1478,7 @@ class lammps(object):
This is a wrapper around the :cpp:func:`lammps_force_timeout` This is a wrapper around the :cpp:func:`lammps_force_timeout`
function of the library interface. function of the library interface.
.. versionadded:: 9Oct2020
""" """
self.lib.lammps_force_timeout(self.lmp) self.lib.lammps_force_timeout(self.lmp)
@ -1625,6 +1628,8 @@ class lammps(object):
This is a wrapper around the function :cpp:func:`lammps_has_id` This is a wrapper around the function :cpp:func:`lammps_has_id`
of the library interface. of the library interface.
.. versionadded:: 9Oct2020
:param category: name of category :param category: name of category
:type category: string :type category: string
:param name: name of the ID :param name: name of the ID
@ -1643,6 +1648,8 @@ class lammps(object):
This is a wrapper around the functions :cpp:func:`lammps_id_count()` This is a wrapper around the functions :cpp:func:`lammps_id_count()`
and :cpp:func:`lammps_id_name()` of the library interface. and :cpp:func:`lammps_id_name()` of the library interface.
.. versionadded:: 9Oct2020
:param category: name of category :param category: name of category
:type category: string :type category: string