Skip to content

Commit

Permalink
cty
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Oct 5, 2023
1 parent 21a5cd7 commit 0d11544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grid/src/grid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ impl SerialTopology {
for e in &ref_entities {
let vertices = e.iter().map(|x| cell[*x]).collect::<Vec<usize>>();
let mut found = false;
for entity in connectivity[dim0][0].iter_rows() {
for entity in cty.iter_rows() {
if all_equal(entity, &vertices) {
found = true;
break;
Expand Down

0 comments on commit 0d11544

Please sign in to comment.