pub fn nested_dissection_ordering<F>(
matrix: &CsrMatrix<F>,
) -> SparseResult<Vec<usize>>Expand description
Nested dissection ordering.
Recursively bisects the graph of the matrix using a simple graph partitioning heuristic (BFS-based bisection), numbering separators last. This is effective for matrices arising from 2D/3D discretisations.