Skip to content
Snippets Groups Projects
Commit 00a96725 authored by Stan Moore's avatar Stan Moore
Browse files

Fix issue in fix_qeq_reax_kokkos, can't call child function from base constructor

parent 19325227
No related branches found
No related tags found
No related merge requests found
...@@ -64,6 +64,10 @@ FixQEqReaxKokkos(LAMMPS *lmp, int narg, char **arg) : ...@@ -64,6 +64,10 @@ FixQEqReaxKokkos(LAMMPS *lmp, int narg, char **arg) :
nmax = nmax = m_cap = 0; nmax = nmax = m_cap = 0;
allocated_flag = 0; allocated_flag = 0;
nprev = 4; nprev = 4;
memory->destroy(s_hist);
memory->destroy(t_hist);
grow_arrays(atom->nmax);
} }
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment