LisaPizzoExercises/Sheet7/E14/jacob_template/cuthill_mckee_ordering.h
2026-01-10 15:26:59 +01:00

8 lines
165 B
C++

#ifndef CUTHILL_MCKEE_ORDERING
#define CUTHILL_MCKEE_ORDERING
#include <vector>
std::vector<int> cuthill_mckee_reordering(std::vector<int> const &_edges);
#endif