forked from lijiext/lammps
fix bugs from incorrect code synchronization
This commit is contained in:
parent
5abd6e5122
commit
3f46b6d782
|
@ -53,7 +53,6 @@ PairBuckLongCoulLong::PairBuckLongCoulLong(LAMMPS *lmp) : Pair(lmp)
|
|||
writedata = 1;
|
||||
ftable = NULL;
|
||||
fdisptable = NULL;
|
||||
qdist = 0.0;
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
|
|
|
@ -247,7 +247,7 @@ void PairLJLongCoulLong::init_style()
|
|||
// setup force tables
|
||||
|
||||
if (ncoultablebits && (ewald_order&(1<<1))) init_tables(cut_coul,cut_respa);
|
||||
if (ndisptablebits && (ewald_order&(1<<6))) init_tables_disp(cut_buck_global);
|
||||
if (ndisptablebits && (ewald_order&(1<<6))) init_tables_disp(cut_lj_global);
|
||||
|
||||
// request regular or rRESPA neighbor lists if neighrequest_flag != 0
|
||||
|
||||
|
|
Loading…
Reference in New Issue