Skip to content

Commit

Permalink
fix as suggested by @oflatt
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorHansen committed Dec 27, 2023
1 parent 6662118 commit fa73334
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,10 @@ fn main() {

let start_time = std::time::Instant::now();
let result = extractor.extract(&egraph, &egraph.root_eclasses);
result.check(&egraph);

let us = start_time.elapsed().as_micros();

result.check(&egraph);

let tree = result.tree_cost(&egraph, &egraph.root_eclasses);
let dag = result.dag_cost(&egraph, &egraph.root_eclasses);

Expand Down

0 comments on commit fa73334

Please sign in to comment.