add missing overrides

This commit is contained in:
Axel Kohlmeyer
2025-04-02 17:11:17 -04:00
parent 7b4c33630d
commit 75e12e2004

View File

@ -42,16 +42,16 @@ public:
typedef ArrayTypes<DeviceType> AT;
PairMLIAPKokkos(class LAMMPS*);
~PairMLIAPKokkos();
void settings(int narg, char ** arg);
void init_style();
~PairMLIAPKokkos() override;
void settings(int narg, char ** arg) override;
void init_style() override;
void compute(int, int);
void compute(int, int) override;
void e_tally(MLIAPData* data);
void allocate();
void allocate() override;
void coeff(int narg, char **arg);
void coeff(int narg, char **arg) override;
//Outward facing functions to be invoked by the ML layer via MLIAPDataKokkosDevice
template <typename CommType>