Merge pull request #275 from andeplane/IP_VORONOI

Initializing pointers in VORONOI
This commit is contained in:
sjplimp
2016-11-17 09:01:46 -07:00
committed by GitHub

View File

@ -42,7 +42,10 @@ using namespace voro;
/* ---------------------------------------------------------------------- */
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;