2014-07-30 22:59:20 +08:00
|
|
|
/* -*- c++ -*- ----------------------------------------------------------
|
2010-11-23 08:41:14 +08:00
|
|
|
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
|
2012-06-07 06:47:51 +08:00
|
|
|
certain rights in this software. This software is distributed under
|
2010-11-23 08:41:14 +08:00
|
|
|
the GNU General Public License.
|
|
|
|
|
|
|
|
See the README file in the top-level LAMMPS directory.
|
|
|
|
------------------------------------------------------------------------- */
|
2010-11-24 03:56:33 +08:00
|
|
|
|
2016-09-08 03:42:58 +08:00
|
|
|
#ifdef NPAIR_CLASS
|
|
|
|
|
|
|
|
NPairStyle(half/size/bin/newton,
|
|
|
|
NPairHalfSizeBinNewton,
|
|
|
|
NP_HALF | NP_SIZE | NP_BIN | NP_NEWTON | NP_ORTHO)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifndef LMP_NPAIR_HALF_SIZE_BIN_NEWTON_H
|
|
|
|
#define LMP_NPAIR_HALF_SIZE_BIN_NEWTON_H
|
|
|
|
|
|
|
|
#include "npair.h"
|
2010-11-23 08:41:14 +08:00
|
|
|
|
2016-09-08 03:42:58 +08:00
|
|
|
namespace LAMMPS_NS {
|
2012-02-10 05:03:50 +08:00
|
|
|
|
2016-09-08 03:42:58 +08:00
|
|
|
class NPairHalfSizeBinNewton : public NPair {
|
|
|
|
public:
|
|
|
|
NPairHalfSizeBinNewton(class LAMMPS *);
|
|
|
|
~NPairHalfSizeBinNewton() {}
|
|
|
|
void build(class NeighList *);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ERROR/WARNING messages:
|
2010-11-23 08:41:14 +08:00
|
|
|
|
2018-04-04 07:48:31 +08:00
|
|
|
E: Neighbor list overflow, boost neigh_modify one
|
|
|
|
|
|
|
|
UNDOCUMENTED
|
|
|
|
|
2011-12-16 09:37:13 +08:00
|
|
|
*/
|