diff --git a/src/neighbor.cpp b/src/neighbor.cpp index 0bd613c00010c889437c34b4f20f5af3d59efa1b..16ca4ffc6761eeee27341b38cdb47a55b5c5e72b 100644 --- a/src/neighbor.cpp +++ b/src/neighbor.cpp @@ -54,7 +54,7 @@ using namespace LAMMPS_NS; enum{NSQ,BIN,MULTI}; // also in neigh_list.cpp -// #define NEIGH_LIST_DEBUG 1 +//#define NEIGH_LIST_DEBUG 1 /* ---------------------------------------------------------------------- */ @@ -1391,6 +1391,20 @@ void Neighbor::bin_atoms() bins[i] = binhead[ibin]; binhead[ibin] = i; } + + /* + for (i = nlocal; i < nall; i++) { + ibin = coord2bin(x[i]); + bins[i] = binhead[ibin]; + binhead[ibin] = i; + } + + for (i = 0; i < nlocal; i++) { + ibin = coord2bin(x[i]); + bins[i] = binhead[ibin]; + binhead[ibin] = i; + } + */ } /* ---------------------------------------------------------------------- diff --git a/src/style_meam.h b/src/style_meam.h index 221a363f111f1f80d616cddc14f99186dfe920e7..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 --- a/src/style_meam.h +++ b/src/style_meam.h @@ -1,20 +0,0 @@ -/* ---------------------------------------------------------------------- - LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator - http://lammps.sandia.gov, Sandia National Laboratories - Steve Plimpton, sjplimp@sandia.gov - - Copyright (2003) Sandia Corporation. Under the terms of Contract - DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains - certain rights in this software. This software is distributed under - the GNU General Public License. - - See the README file in the top-level LAMMPS directory. -------------------------------------------------------------------------- */ - -#ifdef PairInclude -#include "pair_meam.h" -#endif - -#ifdef PairClass -PairStyle(meam,PairMEAM) -#endif diff --git a/src/style_poems.h b/src/style_poems.h index 0434d02bf87bed749af2c5f286aeab1f3cb093d9..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 --- a/src/style_poems.h +++ b/src/style_poems.h @@ -1,20 +0,0 @@ -/* ---------------------------------------------------------------------- - LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator - http://lammps.sandia.gov, Sandia National Laboratories - Steve Plimpton, sjplimp@sandia.gov - - Copyright (2003) Sandia Corporation. Under the terms of Contract - DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains - certain rights in this software. This software is distributed under - the GNU General Public License. - - See the README file in the top-level LAMMPS directory. -------------------------------------------------------------------------- */ - -#ifdef FixInclude -#include "fix_poems.h" -#endif - -#ifdef FixClass -FixStyle(poems,FixPOEMS) -#endif