git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@13332 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp
2015-03-30 23:17:06 +00:00
parent 8d078d0602
commit bd37304ade
27 changed files with 135 additions and 39 deletions

View File

@ -88,6 +88,7 @@ class Modify : protected Pointers {
void delete_fix(const char *);
int find_fix(const char *);
int check_package(const char *);
int adjust_dof_fix(int);
void add_compute(int, char **, int trysuffix=0);
void modify_compute(int, char **);
@ -121,6 +122,9 @@ class Modify : protected Pointers {
int *end_of_step_every;
int n_dofflag; // list of fixes with dof() method
int *list_dofflag;
int n_timeflag; // list of computes that store time invocation
int *list_timeflag;
@ -137,6 +141,7 @@ class Modify : protected Pointers {
void list_init(int, int &, int *&);
void list_init_end_of_step(int, int &, int *&);
void list_init_thermo_energy(int, int &, int *&);
void list_init_dofflag(int &, int *&);
void list_init_compute();
private: