add bugfix for plugin wrapper of library interface from Stan

This commit is contained in:
Axel Kohlmeyer
2023-01-13 03:54:22 -05:00
parent 692bdaea37
commit 59a9161435

View File

@ -172,9 +172,9 @@ struct _liblammpsplugin {
* caller must match to how LAMMPS library is built */
#ifndef LAMMPS_BIGBIG
void (*create_atoms)(void *, int, int *, int *, double *, double *, int *, int);
int (*create_atoms)(void *, int, int *, int *, double *, double *, int *, int);
#else
void (*create_atoms)(void *, int, int64_t *, int *, double *, double *, int64_t *, int);
int (*create_atoms)(void *, int, int64_t *, int *, double *, double *, int64_t *, int);
#endif
int (*find_pair_neighlist)(void *, const char *, int, int, int);