Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
abd4f4ce
Commit
abd4f4ce
authored
Jul 02, 2020
by
Matthieu Schaller
Browse files
Fix problem in cell_has_tasks()
parent
9b3539f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cell.c
View file @
abd4f4ce
...
...
@@ -4626,9 +4626,9 @@ void cell_set_super_mapper(void *map_data, int num_elements, void *extra_data) {
*/
int
cell_has_tasks
(
struct
cell
*
c
)
{
#ifdef WITH_MPI
if
(
c
->
timestep
!=
NULL
||
c
->
mpi
.
recv
!=
NULL
)
return
1
;
if
(
c
->
timestep
_in
!=
NULL
||
c
->
mpi
.
recv
!=
NULL
)
return
1
;
#else
if
(
c
->
timestep
!=
NULL
)
return
1
;
if
(
c
->
timestep
_in
!=
NULL
)
return
1
;
#endif
if
(
c
->
split
)
{
...
...
Jacob Kegerreis
@jkeger
mentioned in commit
b2b3562a
·
Jul 03, 2020
mentioned in commit
b2b3562a
mentioned in commit b2b3562a54ce8574347d14484663ce877533159b
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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