forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@12022 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
702714f341
commit
49c0f92b04
|
@ -35,6 +35,7 @@ NeighRequest::NeighRequest(LAMMPS *lmp) : Pointers(lmp)
|
|||
|
||||
half = 1;
|
||||
full = 0;
|
||||
full_cluster = 0;
|
||||
gran = granhistory = 0;
|
||||
respainner = respamiddle = respaouter = 0;
|
||||
half_from_full = 0;
|
||||
|
|
|
@ -38,6 +38,7 @@ class NeighRequest : protected Pointers {
|
|||
|
||||
int half; // 1 if half neigh list (set by default)
|
||||
int full; // 1 if full neigh list
|
||||
int full_cluster; // only used by Kokkos pair styles
|
||||
|
||||
int gran; // 1 if granular list
|
||||
int granhistory; // 1 if granular history list
|
||||
|
@ -86,7 +87,7 @@ class NeighRequest : protected Pointers {
|
|||
|
||||
int kokkos_host;
|
||||
int kokkos_device;
|
||||
|
||||
|
||||
// set by neighbor and pair_hybrid after all requests are made
|
||||
// these settings do not change kind value
|
||||
|
||||
|
|
|
@ -183,6 +183,8 @@ class Pair : protected Pointers {
|
|||
protected:
|
||||
enum{GEOMETRIC,ARITHMETIC,SIXTHPOWER}; // mixing options
|
||||
|
||||
int special_lj[4]; // copied from force->special_lj for Kokkos
|
||||
|
||||
int allocated; // 0/1 = whether arrays are allocated
|
||||
int suffix_flag; // suffix compatibility flag
|
||||
|
||||
|
|
Loading…
Reference in New Issue