Skip to content
Snippets Groups Projects
Commit 770f5d0b authored by Stan Moore's avatar Stan Moore
Browse files

Whitespace change

parent a31b0096
No related branches found
No related tags found
Loading
......@@ -1309,6 +1309,7 @@ int Neighbor::choose_stencil(NeighRequest *rq)
else if (rq->newton == 2) newtflag = 0;
// use flags to match exactly one of NStencil class masks, bit by bit
// 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 == MULTI && !(mask & NS_MULTI)) continue;
if (dimension == 2 && !(mask & NS_2D)) continue;
if (dimension == 3 && !(mask & NS_3D)) continue;
......@@ -1814,6 +1816,7 @@ void Neighbor::build_one(class NeighList *mylist, int preflag)
}
// build the list
np->build_setup();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment