Skip to content
Snippets Groups Projects
Commit 17d1c03b authored by Russel Arbore's avatar Russel Arbore
Browse files

cleanup

parent 2b48a39e
No related branches found
No related tags found
1 merge request!157Fork fission bufferize
Pipeline #201508 passed
This commit is part of merge request !157. Comments created here will be created in the context of that merge request.
......@@ -166,16 +166,6 @@ pub fn copy_subgraph(
(new_nodes, map, outside_users)
}
fn is_strict_superset<T: Eq + Hash>(set1: &HashSet<T>, set2: &HashSet<T>) -> bool {
// A strict superset must be larger than its subset
if set1.len() <= set2.len() {
return false;
}
// Every element in set2 must be in set1
set2.iter().all(|item| set1.contains(item))
}
pub fn find_bufferize_edges(
editor: &mut FunctionEditor,
fork: NodeID,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment