Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SWIFTsim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SWIFT
SWIFTsim
Commits
9170b892
Commit
9170b892
authored
7 years ago
by
Pedro Gonnet
Browse files
Options
Downloads
Patches
Plain Diff
add do_sort and do_sub_sort fields to the cell struct.
parent
ca879eaa
No related branches found
No related tags found
1 merge request
!343
Subset sorting
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/cell.h
+7
-1
7 additions, 1 deletion
src/cell.h
with
7 additions
and
1 deletion
src/cell.h
+
7
−
1
View file @
9170b892
...
@@ -337,8 +337,14 @@ struct cell {
...
@@ -337,8 +337,14 @@ struct cell {
/*! Does this cell need to be drifted? */
/*! Does this cell need to be drifted? */
char
do_drift
;
char
do_drift
;
/*! Do
es
any of this cell's sub-cells need to be drifted? */
/*! Do any of this cell's sub-cells need to be drifted? */
char
do_sub_drift
;
char
do_sub_drift
;
/*! Bit mask of sorts that need to be computed for this cell. */
int
do_sort
;
/*! Do any of this cell's sub-cells need to be sorted? */
char
do_sub_sort
;
#ifdef SWIFT_DEBUG_CHECKS
#ifdef SWIFT_DEBUG_CHECKS
/*! The list of tasks that have been executed on this cell */
/*! The list of tasks that have been executed on this cell */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment