forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@13262 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
996a18cb83
commit
acfc16d41a
|
@ -26,6 +26,7 @@ action () {
|
|||
|
||||
touch ../accelerator_kokkos.h
|
||||
touch ../memory.h
|
||||
touch ../special.cpp
|
||||
|
||||
# list of files with optional dependcies
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* ----------------------------------------------------------------------
|
||||
</* ----------------------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
@ -69,7 +69,8 @@ PairEAM::PairEAM(LAMMPS *lmp) : Pair(lmp)
|
|||
|
||||
PairEAM::~PairEAM()
|
||||
{
|
||||
if (!copymode) {
|
||||
if (copymode) return;
|
||||
|
||||
memory->destroy(rho);
|
||||
memory->destroy(fp);
|
||||
|
||||
|
@ -120,7 +121,6 @@ PairEAM::~PairEAM()
|
|||
memory->destroy(rhor_spline);
|
||||
memory->destroy(z2r_spline);
|
||||
}
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
</* ----------------------------------------------------------------------
|
||||
/* ----------------------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
|
Loading…
Reference in New Issue