In this [function](https://github.com/gdalle/SparseMatrixColorings.jl/blob/main/src/graph.jl#L212-L216), we could use `Iterators.flatten` if we we know the index of the diagonal coefficients. ```julia for i in Iterators.flatten((1:2, 4:5)) ... end ```
In this function, we could use
Iterators.flattenif we we know the index of the diagonal coefficients.