Skip to content
Snippets Groups Projects
Commit c20ee34c authored by Anders Hafreager's avatar Anders Hafreager
Browse files

Initializing pointers in VORONOI

parent 9806da69
No related branches found
No related tags found
No related merge requests found
...@@ -42,7 +42,10 @@ using namespace voro; ...@@ -42,7 +42,10 @@ using namespace voro;
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */
ComputeVoronoi::ComputeVoronoi(LAMMPS *lmp, int narg, char **arg) : ComputeVoronoi::ComputeVoronoi(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg) Compute(lmp, narg, arg), con_mono(NULL), con_poly(NULL),
radstr(NULL), voro(NULL), edge(NULL), sendvector(NULL),
rfield(NULL), tags(NULL), occvec(NULL), sendocc(NULL),
lroot(NULL), lnext(NULL), faces(NULL)
{ {
int sgroup; int sgroup;
......
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