new Section package and start doc pages and build scripts

This commit is contained in:
Steve Plimpton
2017-05-04 11:22:20 -06:00
parent f5cf1f1314
commit addd87c0f7
115 changed files with 4564 additions and 2516 deletions

View File

@ -667,7 +667,7 @@ int Neighbor::init_pair()
// create new lists, one per request including added requests
// wait to allocate initial pages until copy lists are detected
// NOTE: can I allocation now, instead of down below?
// NOTE: can I allocate now, instead of down below?
nlist = nrequest;
@ -1216,7 +1216,7 @@ void Neighbor::morph_copy()
// check all other lists
for (j = 0; j < i; j++) {
for (j = 0; j < nrequest; j++) {
if (i == j) continue;
jrq = requests[j];
@ -1279,7 +1279,7 @@ void Neighbor::morph_copy()
// turn list I into a copy of list J
// do not copy a list from another copy list, but from its parent list
if (j < i) {
if (j < nrequest) {
irq->copy = 1;
if (jrq->copy) irq->copylist = jrq->copylist;
else irq->copylist = j;