Commit 8dceec24 authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@2229 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 24704512
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -473,6 +473,7 @@ void FixPour::pre_exchange()
    atom->tag_extend();
    atom->natoms += nnear - nprevious;
    if (atom->map_style) {
      atom->nghost = 0;
      atom->map_init();
      atom->map_set();
    }
+1 −0
Original line number Diff line number Diff line
@@ -151,6 +151,7 @@ void CreateAtoms::command(int narg, char **arg)
  if (atom->natoms <= MAXATOMS) atom->tag_extend();

  if (atom->map_style) {
    atom->nghost = 0;
    atom->map_init();
    atom->map_set();
  }
+1 −0
Original line number Diff line number Diff line
@@ -311,6 +311,7 @@ void FixDeposit::pre_exchange()
    atom->tag_extend();
    atom->natoms += 1;
    if (atom->map_style) {
      atom->nghost = 0;
      atom->map_init();
      atom->map_set();
    }
+1 −0
Original line number Diff line number Diff line
@@ -382,6 +382,7 @@ void Replicate::command(int narg, char **arg)
  // create global mapping and bond topology now that system is defined

  if (atom->map_style) {
    atom->nghost = 0;
    atom->map_init();
    atom->map_set();
  }
+1 −0
Original line number Diff line number Diff line
@@ -687,5 +687,6 @@ void Special::combine()

  // re-create map

  atom->nghost = 0;
  atom->map_set();
}
Loading