Skip to content

Commit

Permalink
Revert.
Browse files Browse the repository at this point in the history
  • Loading branch information
jhale committed Nov 18, 2024
1 parent d3f7adf commit ce72489
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cpp/dolfinx/graph/ordering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,7 @@ gps_reorder_unlabelled(const graph::AdjacencyList<std::int32_t>& graph,
std::vector<std::array<int, 2>> lvp(n);
for (int i = 0; i < k; ++i)
{
std::span<int> lv_links = lv.links(i);
for (std::size_t w : lv_links)
for (int w : lv.links(i))
lvp[w][0] = i;
for (int w : lu.links(i))
lvp[w][1] = k - 1 - i;
Expand Down

0 comments on commit ce72489

Please sign in to comment.