|
@@ -36,7 +36,9 @@ pub struct Never;
|
|
pub struct MaxTag;
|
|
pub struct MaxTag;
|
|
pub struct MinTag;
|
|
pub struct MinTag;
|
|
|
|
|
|
|
|
+#[allow(unused)]
|
|
pub type MinPriority = Fixpoint<MinTag>;
|
|
pub type MinPriority = Fixpoint<MinTag>;
|
|
|
|
+#[allow(unused)]
|
|
pub type MaxPriority = Fixpoint<MaxTag>;
|
|
pub type MaxPriority = Fixpoint<MaxTag>;
|
|
|
|
|
|
pub struct Fixpoint<Tag: 'static> {
|
|
pub struct Fixpoint<Tag: 'static> {
|
|
@@ -104,11 +106,11 @@ impl<Assoc: Clone> TotalOrder<Assoc> {
|
|
let before_id = TypeId::of::<SP::Before>();
|
|
let before_id = TypeId::of::<SP::Before>();
|
|
self.nodes
|
|
self.nodes
|
|
.entry(tid)
|
|
.entry(tid)
|
|
- .or_insert_with(|| Default::default())
|
|
|
|
|
|
+ .or_insert_with(Default::default)
|
|
.insert(after_id);
|
|
.insert(after_id);
|
|
self.nodes
|
|
self.nodes
|
|
.entry(before_id)
|
|
.entry(before_id)
|
|
- .or_insert_with(|| Default::default())
|
|
|
|
|
|
+ .or_insert_with(Default::default)
|
|
.insert(tid);
|
|
.insert(tid);
|
|
|
|
|
|
// if we're not at an internal node, continue
|
|
// if we're not at an internal node, continue
|
|
@@ -128,7 +130,7 @@ impl<Assoc: Clone> TotalOrder<Assoc> {
|
|
let tid = TypeId::of::<SP>();
|
|
let tid = TypeId::of::<SP>();
|
|
self.associated
|
|
self.associated
|
|
.entry(tid)
|
|
.entry(tid)
|
|
- .or_insert_with(|| vec![])
|
|
|
|
|
|
+ .or_insert_with(Vec::new)
|
|
.push(assoc.clone());
|
|
.push(assoc.clone());
|
|
|
|
|
|
let mut visited = VisitedSet::default();
|
|
let mut visited = VisitedSet::default();
|
|
@@ -162,14 +164,13 @@ impl<Assoc: Clone> TotalOrder<Assoc> {
|
|
let mut tid_order = vec![];
|
|
let mut tid_order = vec![];
|
|
while tsort.pop().map(|tid| tid_order.push(tid)).is_some() {}
|
|
while tsort.pop().map(|tid| tid_order.push(tid)).is_some() {}
|
|
// we expect there to be two items left in the tsort: MaxPriority and Never
|
|
// we expect there to be two items left in the tsort: MaxPriority and Never
|
|
- if tsort.len() != 0 {
|
|
|
|
|
|
+ if !tsort.is_empty() {
|
|
panic!("Circular dependency detected! tsort: {:?}", tsort);
|
|
panic!("Circular dependency detected! tsort: {:?}", tsort);
|
|
}
|
|
}
|
|
|
|
|
|
tid_order
|
|
tid_order
|
|
.iter()
|
|
.iter()
|
|
- .map(|tid| self.associated.remove(tid))
|
|
|
|
- .flatten()
|
|
|
|
|
|
+ .flat_map(|tid| self.associated.remove(tid))
|
|
.flatten()
|
|
.flatten()
|
|
.map(|a| a.unwrap())
|
|
.map(|a| a.unwrap())
|
|
.collect()
|
|
.collect()
|