You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coloring algorithm which leverages specific matrix structures to produce optimal or near-optimal solutions.
5
+
6
+
The following matrix types are supported:
7
+
8
+
- From the standard library `LinearAlgebra`: [`Diagonal`](@extref LinearAlgebra.Diagonal), [`Bidiagonal`](@extref LinearAlgebra.Bidiagonal), [`Tridiagonal`](@extref LinearAlgebra.Tridiagonal)
9
+
- From [BandedMatrices.jl](https://github.com/JuliaLinearAlgebra/BandedMatrices.jl): [`BandedMatrix`](@extref BandedMatrices.BandedMatrix)
10
+
11
+
!!! warning
12
+
Only `:nonsymmetric` structures with `:row` or `:column` partitions (aka unidirectional Jacobian colorings) are supported by this algorithm at the moment.
13
+
14
+
!!! tip
15
+
To request support for a new type of structured matrix, open an issue on the SparseMatrixColorings.jl GitHub repository!
0 commit comments