forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@13066 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
6c48e6f6d5
commit
184f61199d
|
@ -629,6 +629,25 @@ void Neighbor::init()
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// output neighbor list info, only first time or when changed
|
||||
|
||||
if (me == 0) {
|
||||
if (logfile) {
|
||||
fprintf(logfile,"Neighbor list info ...\n");
|
||||
fprintf(logfile," %d neighbor list requests\n", old_nrequest);
|
||||
fprintf(logfile," update every %d steps, delay %d steps, check %s\n",
|
||||
every, delay, dist_check ? "yes" : "no");
|
||||
fprintf(logfile," master list distance cutoff = %g\n",cutneighmax);
|
||||
}
|
||||
if (screen) {
|
||||
fprintf(screen,"Neighbor list info ...\n");
|
||||
fprintf(screen," %d neighbor list requests\n", old_nrequest);
|
||||
fprintf(screen," update every %d steps, delay %d steps, check %s\n",
|
||||
every, delay, dist_check ? "yes" : "no");
|
||||
fprintf(screen," master list distance cutoff = %g\n",cutneighmax);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// allocate initial pages for each list, except if listcopy set
|
||||
|
|
Loading…
Reference in New Issue