From 81bfcb80e7d48ac92d4b637cdf9143c4c281b21c Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sat, 14 Jun 2025 11:15:05 -0400 Subject: [PATCH] add missing prototype --- python/lammps/core.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/lammps/core.py b/python/lammps/core.py index cab3171cd3..e6ced9703b 100644 --- a/python/lammps/core.py +++ b/python/lammps/core.py @@ -320,6 +320,11 @@ class lammps(object): [c_void_p,c_char_p,c_int,c_int,c_int,POINTER(c_int),c_void_p] self.lib.lammps_scatter_subset.restype = None + self.lib.lammps_create_atoms.argtypes = \ + [c_void_p, c_int, POINTER(self.c_tagint), POINTER(c_int), POINTER(c_double), + POINTER(c_double), POINTER(c_double), POINTER(self.c_imageint), c_int] + self.lib.lammps_create_atoms.retype = c_int + self.lib.lammps_find_pair_neighlist.argtypes = [c_void_p, c_char_p, c_int, c_int, c_int] self.lib.lammps_find_pair_neighlist.restype = c_int