forked from lijiext/lammps
Whitespace change
This commit is contained in:
parent
a31b00965a
commit
770f5d0bf7
|
@ -1309,6 +1309,7 @@ int Neighbor::choose_stencil(NeighRequest *rq)
|
||||||
else if (rq->newton == 2) newtflag = 0;
|
else if (rq->newton == 2) newtflag = 0;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// use flags to match exactly one of NStencil class masks, bit by bit
|
// use flags to match exactly one of NStencil class masks, bit by bit
|
||||||
// exactly one of halfflag,fullflag is set and thus must match
|
// exactly one of halfflag,fullflag is set and thus must match
|
||||||
|
|
||||||
|
@ -1329,6 +1330,7 @@ int Neighbor::choose_stencil(NeighRequest *rq)
|
||||||
if (style == BIN && !(mask & NS_BIN)) continue;
|
if (style == BIN && !(mask & NS_BIN)) continue;
|
||||||
if (style == MULTI && !(mask & NS_MULTI)) continue;
|
if (style == MULTI && !(mask & NS_MULTI)) continue;
|
||||||
|
|
||||||
|
|
||||||
if (dimension == 2 && !(mask & NS_2D)) continue;
|
if (dimension == 2 && !(mask & NS_2D)) continue;
|
||||||
if (dimension == 3 && !(mask & NS_3D)) continue;
|
if (dimension == 3 && !(mask & NS_3D)) continue;
|
||||||
|
|
||||||
|
@ -1814,6 +1816,7 @@ void Neighbor::build_one(class NeighList *mylist, int preflag)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// build the list
|
// build the list
|
||||||
|
|
||||||
np->build_setup();
|
np->build_setup();
|
||||||
|
|
Loading…
Reference in New Issue