Skip to content

Commit

Permalink
use the eval graph
Browse files Browse the repository at this point in the history
  • Loading branch information
ljeub-pometry committed May 27, 2024
1 parent e0a3b6a commit fe99ea1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@ where
.sorted()
.permutations(2)
.flat_map(|e| {
g.edge(*e.first().unwrap(), *e.get(1).unwrap())
u.graph()
.edge(*e.first().unwrap(), *e.get(1).unwrap())
.iter()
.flat_map(|edge| edge.explode())
.collect::<Vec<_>>()
Expand Down

0 comments on commit fe99ea1

Please sign in to comment.