add lammps_gather_bonds() function to the C library interface

This commit is contained in:
Axel Kohlmeyer
2021-07-26 18:32:06 -04:00
parent 0de2167fb6
commit fdc75dcf35
4 changed files with 116 additions and 0 deletions

View File

@ -152,6 +152,8 @@ void lammps_scatter_atoms(void *handle, char *name, int type, int count, void *d
void lammps_scatter_atoms_subset(void *handle, char *name, int type, int count, int ndata, int *ids,
void *data);
void lammps_gather_bonds(void *handle, void *data);
void lammps_gather(void *handle, char *name, int type, int count, void *data);
void lammps_gather_concat(void *handle, char *name, int type, int count, void *data);
void lammps_gather_subset(void *handle, char *name, int type, int count, int ndata, int *ids,