Forgot to put LMP_VAR_VECTOR in the documentation

This commit is contained in:
Karl Hammond
2022-09-30 20:14:40 -05:00
parent 9183c0e1c8
commit da2f7f6fad

View File

@ -1096,11 +1096,12 @@ class lammps(object):
The variable must be either an equal-style (or equivalent) The variable must be either an equal-style (or equivalent)
variable or an atom-style variable. The variable type can be variable or an atom-style variable. The variable type can be
provided as the ``vartype`` parameter, which may be one of several provided as the ``vartype`` parameter, which may be one of several
constants: ``LMP_VAR_EQUAL``, ``LMP_VAR_ATOM``, or ``LMP_VAR_STRING``. constants: ``LMP_VAR_EQUAL``, ``LMP_VAR_ATOM``, ``LMP_VAR_VECTOR``,
If omitted or ``None``, LAMMPS will determine its value for you based on or ``LMP_VAR_STRING``. If omitted or ``None``, LAMMPS will determine its
a call to :cpp:func:`lammps_extract_variable_datatype` from the C library value for you based on a call to
interface. The group parameter is only used for atom-style variables and :cpp:func:`lammps_extract_variable_datatype` from the C library interface.
defaults to the group "all". The group parameter is only used for atom-style variables and defaults to
the group "all".
:param name: name of the variable to execute :param name: name of the variable to execute
:type name: string :type name: string