make consistent, remove ghost member map

This commit is contained in:
Axel Kohlmeyer
2025-04-04 06:52:02 -04:00
parent d06bfbf180
commit 50f42f203d
2 changed files with 1 additions and 4 deletions

View File

@ -47,7 +47,7 @@ using namespace LAMMPS_NS;
/* ---------------------------------------------------------------------- */
PairMLIAP::PairMLIAP(LAMMPS *lmp) :
Pair(lmp), map(nullptr), model(nullptr), descriptor(nullptr), data(nullptr)
Pair(lmp), model(nullptr), descriptor(nullptr), data(nullptr)
{
single_enable = 0;
restartinfo = 0;
@ -55,8 +55,6 @@ PairMLIAP::PairMLIAP(LAMMPS *lmp) :
manybody_flag = 1;
is_child = false;
centroidstressflag = CENTROID_NOTAVAIL;
model=nullptr;
descriptor=nullptr;
}
/* ---------------------------------------------------------------------- */

View File

@ -36,7 +36,6 @@ class PairMLIAP : public Pair {
void init_style() override;
double init_one(int, int) override;
double memory_usage() override;
int *map; // mapping from atom types to elements
protected:
virtual void allocate();