mirror of https://github.com/lammps/lammps.git
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@3246 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
64c45b8d56
commit
191f7663d1
|
@ -105,7 +105,10 @@ class Pair : protected Pointers {
|
|||
int offset_flag,mix_flag; // flags for offset and mixing
|
||||
int ncoultablebits; // size of Coulomb table
|
||||
double tabinner; // inner cutoff for Coulomb table
|
||||
typedef union { int i; float f;} table_lookup_t; // custom data type for accessing Coulomb tables.
|
||||
|
||||
// custom data type for accessing Coulomb tables
|
||||
|
||||
typedef union {int i; float f;} table_lookup_t;
|
||||
|
||||
double THIRD;
|
||||
|
||||
|
|
Loading…
Reference in New Issue