Merge pull request #4380 from rbberger/python_computes
Python and library API changes for computes
This commit is contained in:
@ -118,6 +118,9 @@ liblammpsplugin_t *liblammpsplugin_load(const char *lib)
|
||||
ADDSYM(set_internal_variable);
|
||||
ADDSYM(variable_info);
|
||||
ADDSYM(eval);
|
||||
ADDSYM(clearstep_compute);
|
||||
ADDSYM(addstep_compute);
|
||||
ADDSYM(addstep_compute_all);
|
||||
|
||||
ADDSYM(gather_atoms);
|
||||
ADDSYM(gather_atoms_concat);
|
||||
|
||||
@ -164,6 +164,9 @@ struct _liblammpsplugin {
|
||||
int (*set_internal_variable)(void *, const char *, double);
|
||||
int (*variable_info)(void *, int, char *, int);
|
||||
double (*eval)(void *, const char *);
|
||||
void (*clearstep_compute)(void *);
|
||||
void (*addstep_compute)(void *, void *);
|
||||
void (*addstep_compute_all)(void *, void *);
|
||||
|
||||
void (*gather_atoms)(void *, const char *, int, int, void *);
|
||||
void (*gather_atoms_concat)(void *, const char *, int, int, void *);
|
||||
|
||||
Reference in New Issue
Block a user