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

This commit is contained in:
sjplimp
2009-01-05 22:26:08 +00:00
parent e1f72f6d3a
commit 0cc1d090f4
90 changed files with 1129 additions and 779 deletions

View File

@ -54,7 +54,10 @@ class Compute : protected Pointers {
int maxtime; // max # of entries time list can hold
int *tlist; // time list of steps the Compute is called on
int invoked; // set when Compute is invoked, to avoid re-invoking
int invoked_flag; // 1 if invoked or accessed this step, 0 if not
int invoked_scalar; // last timestep on which compute_scalar() was invoked
int invoked_vector; // ditto for compute_vector()
int invoked_peratom; // ditto for compute_peratom()
double dof; // degrees-of-freedom for temperature
@ -85,6 +88,7 @@ class Compute : protected Pointers {
void addstep(int);
int matchstep(int);
void clearstep();
virtual double memory_usage() {return 0.0;}