diff --git a/src/ASPHERE/pair_line_lj.cpp b/src/ASPHERE/pair_line_lj.cpp index 2f3f602ba7..f875158e6e 100644 --- a/src/ASPHERE/pair_line_lj.cpp +++ b/src/ASPHERE/pair_line_lj.cpp @@ -40,6 +40,7 @@ PairLineLJ::PairLineLJ(LAMMPS *lmp) : Pair(lmp) dnum = dfirst = NULL; single_enable = 0; + restartinfo = 0; } /* ---------------------------------------------------------------------- */ diff --git a/src/ASPHERE/pair_tri_lj.cpp b/src/ASPHERE/pair_tri_lj.cpp index dfcdd819ef..13650bb611 100644 --- a/src/ASPHERE/pair_tri_lj.cpp +++ b/src/ASPHERE/pair_tri_lj.cpp @@ -41,6 +41,7 @@ PairTriLJ::PairTriLJ(LAMMPS *lmp) : Pair(lmp) dnum = dfirst = NULL; single_enable = 0; + restartinfo = 0; } /* ---------------------------------------------------------------------- */ diff --git a/src/MANYBODY/pair_adp.cpp b/src/MANYBODY/pair_adp.cpp index 952c1b73a5..8ce9b57732 100644 --- a/src/MANYBODY/pair_adp.cpp +++ b/src/MANYBODY/pair_adp.cpp @@ -37,6 +37,8 @@ using namespace LAMMPS_NS; PairADP::PairADP(LAMMPS *lmp) : Pair(lmp) { + restartinfo = 0; + nmax = 0; rho = NULL; fp = NULL; diff --git a/src/MANYBODY/pair_comb.cpp b/src/MANYBODY/pair_comb.cpp index 2311ea8d1e..a719d33b56 100644 --- a/src/MANYBODY/pair_comb.cpp +++ b/src/MANYBODY/pair_comb.cpp @@ -47,6 +47,7 @@ using namespace MathConst; PairComb::PairComb(LAMMPS *lmp) : Pair(lmp) { single_enable = 0; + restartinfo = 0; one_coeff = 1; nmax = 0; diff --git a/src/MANYBODY/pair_eam.cpp b/src/MANYBODY/pair_eam.cpp index 39a8292bc1..7ccb61c776 100644 --- a/src/MANYBODY/pair_eam.cpp +++ b/src/MANYBODY/pair_eam.cpp @@ -36,6 +36,8 @@ using namespace LAMMPS_NS; PairEAM::PairEAM(LAMMPS *lmp) : Pair(lmp) { + restartinfo = 0; + nmax = 0; rho = NULL; fp = NULL; diff --git a/src/MANYBODY/pair_eim.cpp b/src/MANYBODY/pair_eim.cpp index c8b324d264..a86fa2557c 100644 --- a/src/MANYBODY/pair_eim.cpp +++ b/src/MANYBODY/pair_eim.cpp @@ -37,6 +37,7 @@ using namespace LAMMPS_NS; PairEIM::PairEIM(LAMMPS *lmp) : Pair(lmp) { single_enable = 0; + restartinfo = 0; one_coeff = 1; setfl = NULL; diff --git a/src/MANYBODY/pair_sw.cpp b/src/MANYBODY/pair_sw.cpp index 1c708564ac..deae3cb26f 100755 --- a/src/MANYBODY/pair_sw.cpp +++ b/src/MANYBODY/pair_sw.cpp @@ -41,6 +41,7 @@ using namespace LAMMPS_NS; PairSW::PairSW(LAMMPS *lmp) : Pair(lmp) { single_enable = 0; + restartinfo = 0; one_coeff = 1; nelements = 0; diff --git a/src/MANYBODY/pair_tersoff.cpp b/src/MANYBODY/pair_tersoff.cpp index 7771bb1982..f284f12fd1 100755 --- a/src/MANYBODY/pair_tersoff.cpp +++ b/src/MANYBODY/pair_tersoff.cpp @@ -42,6 +42,7 @@ using namespace MathConst; PairTersoff::PairTersoff(LAMMPS *lmp) : Pair(lmp) { single_enable = 0; + restartinfo = 0; one_coeff = 1; nelements = 0; diff --git a/src/MOLECULE/pair_hbond_dreiding_lj.cpp b/src/MOLECULE/pair_hbond_dreiding_lj.cpp index 104cf83e6d..3ad2c4e351 100644 --- a/src/MOLECULE/pair_hbond_dreiding_lj.cpp +++ b/src/MOLECULE/pair_hbond_dreiding_lj.cpp @@ -45,6 +45,7 @@ PairHbondDreidingLJ::PairHbondDreidingLJ(LAMMPS *lmp) : Pair(lmp) // due to using map() to find bonded H atoms which are not near donor atom no_virial_fdotr_compute = 1; + restartinfo = 0; nparams = maxparam = 0; params = NULL;