Skip to content

Commit

Permalink
More cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Fischman committed Apr 14, 2024
1 parent fce0e1d commit 117cd63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dag_in_context/src/greedy_dag_extractor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use egraph_serialize::{ClassId, NodeId};
use indexmap::*;
use ordered_float::NotNan;
use rustc_hash::FxHashMap;
use std::collections::{HashMap, HashSet};
use std::collections::{HashMap, HashSet, VecDeque};

pub fn serialized_egraph(
egglog_egraph: egglog::EGraph,
Expand Down Expand Up @@ -319,7 +319,7 @@ where
T: Eq + std::hash::Hash + Clone,
{
set: HashSet<T>,
queue: std::collections::VecDeque<T>,
queue: VecDeque<T>,
}

impl<T> Default for UniqueQueue<T>
Expand All @@ -329,7 +329,7 @@ where
fn default() -> Self {
UniqueQueue {
set: Default::default(),
queue: std::collections::VecDeque::new(),
queue: Default::default(),
}
}
}
Expand Down

0 comments on commit 117cd63

Please sign in to comment.