From bac8b267dfa165a884ff32a353d54f1d51776f33 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sun, 5 May 2019 10:26:27 -0400 Subject: [PATCH] make sure fix deform related variables are always initialized to avoid issues with the DomainOMP class. --- src/domain.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/domain.cpp b/src/domain.cpp index 86c4eb2c02..4f23423ae8 100644 --- a/src/domain.cpp +++ b/src/domain.cpp @@ -57,6 +57,7 @@ Domain::Domain(LAMMPS *lmp) : Pointers(lmp) { box_exist = 0; box_change = 0; + deform_flag = deform_vremap = deform_groupbit = 0; dimension = 3; nonperiodic = 0;