Skip to content
Snippets Groups Projects
Commit 9170b892 authored by Pedro Gonnet's avatar Pedro Gonnet
Browse files

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!343Subset sorting
...@@ -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;
/*! Does 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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment