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
1eb97fb4
Commit
1eb97fb4
authored
Apr 14, 2019
by
Pedro Gonnet
Browse files
add an array of cell progeny pairs for recursing over sub-cell pairs.
parent
5336618c
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
src/cell.c
View file @
1eb97fb4
This diff is collapsed.
Click to expand it.
src/cell.h
View file @
1eb97fb4
...
...
@@ -71,6 +71,17 @@ struct link {
struct
link
*
next
;
};
/* Holds the pairs of progeny for each sid. */
struct
cell_split_pair
{
int
count
;
struct
{
int
pid
;
int
pjd
;
int
sid
;
}
pairs
[
16
];
};
extern
struct
cell_split_pair
cell_split_pairs
[
13
];
/**
* @brief Packed cell for information correct at rebuild time.
*
...
...
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