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

This commit is contained in:
sjplimp 2009-10-29 21:53:53 +00:00
parent 64c45b8d56
commit 191f7663d1
1 changed files with 4 additions and 1 deletions

View File

@ -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;