Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
SWIFTsim
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
70
Issues
70
List
Boards
Labels
Milestones
Merge Requests
13
Merge Requests
13
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
SWIFT
SWIFTsim
Commits
c08467a4
Commit
c08467a4
authored
Apr 19, 2018
by
Peter W. Draper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure we include all the top-level cells, not just those that are super cells
parent
7001251e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/debug.c
src/debug.c
+1
-2
No files found.
src/debug.c
View file @
c08467a4
...
...
@@ -326,8 +326,7 @@ static void dumpCells_map(struct cell *c, void *data) {
/* So output local super cells that are active and have MPI
* tasks as requested. */
if
(
c
->
nodeID
==
e
->
nodeID
&&
(
!
super
||
(
super
&&
c
->
super
==
c
))
&&
active
&&
mpiactive
)
{
if
(
c
->
nodeID
==
e
->
nodeID
&&
(
!
super
||
((
super
&&
c
->
super
==
c
)
||
(
c
->
parent
==
NULL
)))
&&
active
&&
mpiactive
)
{
/* If requested we work out how many particles are active in this cell. */
int
pactcount
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment