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
b2b3562a
Commit
b2b3562a
authored
Jul 03, 2020
by
Jacob Kegerreis
Browse files
Revert "Fix problem in cell_has_tasks()"
This reverts commit
abd4f4ce
.
parent
69ecf390
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cell.c
View file @
b2b3562a
...
...
@@ -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
_in
!=
NULL
||
c
->
mpi
.
recv
!=
NULL
)
return
1
;
if
(
c
->
timestep
!=
NULL
||
c
->
mpi
.
recv
!=
NULL
)
return
1
;
#else
if
(
c
->
timestep
_in
!=
NULL
)
return
1
;
if
(
c
->
timestep
!=
NULL
)
return
1
;
#endif
if
(
c
->
split
)
{
...
...
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