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

This commit is contained in:
sjplimp
2011-10-06 17:55:48 +00:00
parent f70a2f8937
commit 15203cb792
81 changed files with 432 additions and 280 deletions

View File

@ -35,7 +35,6 @@ class Variable : protected Pointers {
double evaluate_boolean(char *);
private:
int me;
int nvar; // # of defined variables
int maxvar; // max # of variables arrays can hold
char **names; // name of each variable
@ -44,13 +43,13 @@ class Variable : protected Pointers {
int *which; // next available value for each variable
int *pad; // 1 = pad loop/uloop variables with 0s, 0 = no pad
char ***data; // str value of each variable's values
double PI;
class RanMars *randomequal; // random number generator for equal-style vars
class RanMars *randomatom; // random number generator for atom-style vars
int precedence[16]; // precedence level of math operators
// set length to include OR in enum
int me;
struct Tree { // parse tree for atom-style variables
double value;