Remove reference to base sets (#9032)

# Objective

- Remove all references to base sets following schedule-first rework

## Solution

- Remove last references to base sets in `GraphInfo`
This commit is contained in:
jnhyatt 2023-07-03 13:44:10 -07:00 committed by GitHub
parent 889a5fb130
commit 01eb1bfb8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 5 deletions

View File

@ -76,7 +76,6 @@ pub(crate) struct GraphInfo {
pub(crate) sets: Vec<BoxedSystemSet>,
pub(crate) dependencies: Vec<Dependency>,
pub(crate) ambiguous_with: Ambiguity,
pub(crate) base_set: Option<BoxedSystemSet>,
}
/// Converts 2D row-major pair of indices into a 1D array index.

View File

@ -747,10 +747,6 @@ impl ScheduleGraph {
self.check_set(id, &**set)?;
}
if let Some(base_set) = &graph_info.base_set {
self.check_set(id, &**base_set)?;
}
Ok(())
}