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

This commit is contained in:
sjplimp
2011-12-02 15:58:33 +00:00
parent 1783b93a08
commit 4fe24446de
2 changed files with 10 additions and 2 deletions

View File

@ -1828,3 +1828,12 @@ bigint Neighbor::memory_usage()
return bytes;
}
/* ----------------------------------------------------------------------
return the value of exclude - used to check compatibility with GPU
------------------------------------------------------------------------- */
int Neighbor::exclude_setting()
{
return exclude;
}

View File

@ -75,8 +75,7 @@ class Neighbor : protected Pointers {
void set(int, char **); // set neighbor style and skin distance
void modify_params(int, char**); // modify parameters that control builds
bigint memory_usage();
inline int exclude_setting() { return exclude; }
int exclude_setting();
protected:
int me,nprocs;