Skip to content

Commit

Permalink
Merge branch 'gd/structured2-test' into gd/structured2
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle committed Oct 3, 2024
2 parents 7314475 + f8cfd6a commit 4bad042
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 408 deletions.
21 changes: 1 addition & 20 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,33 +10,14 @@ DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"

[weakdeps]
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0"

[extensions]
SparseMatrixColoringsBandedMatricesExt = "BandedMatrices"
SparseMatrixColoringsBlockBandedMatricesExt = ["BlockArrays", "BlockBandedMatrices"]

[compat]
ADTypes = "1.2.1"
BandedMatrices = "1.7.5"
BlockArrays = "1.1.1"
BlockBandedMatrices = "0.13.1"
Compat = "3.46,4.2"
DataStructures = "0.18"
DocStringExtensions = "0.8,0.9"
LinearAlgebra = "<0.0.1, 1"
DocStringExtensions = "0.8,0.9"
Random = "<0.0.1, 1"
Requires = "1.3.0"
SparseArrays = "<0.0.1, 1"
julia = "1.6"

[extras]
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0"
6 changes: 0 additions & 6 deletions docs/src/dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,3 @@ SparseMatrixColorings.what_fig_61
SparseMatrixColorings.efficient_fig_1
SparseMatrixColorings.efficient_fig_4
```

## Misc

```@docs
SparseMatrixColorings.cycle_range
```
81 changes: 0 additions & 81 deletions ext/SparseMatrixColoringsBandedMatricesExt.jl

This file was deleted.

119 changes: 0 additions & 119 deletions ext/SparseMatrixColoringsBlockBandedMatricesExt.jl

This file was deleted.

18 changes: 0 additions & 18 deletions src/SparseMatrixColorings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@ using DataStructures: DisjointSets, find_root!, root_union!, num_groups
using DocStringExtensions: README, EXPORTS, SIGNATURES, TYPEDEF, TYPEDFIELDS
using LinearAlgebra:
Adjoint,
Bidiagonal,
Diagonal,
Hermitian,
LowerTriangular,
Symmetric,
Transpose,
Tridiagonal,
UpperTriangular,
adjoint,
checksquare,
Expand Down Expand Up @@ -53,7 +51,6 @@ include("matrices.jl")
include("interface.jl")
include("constant.jl")
include("decompression.jl")
include("structured.jl")
include("check.jl")
include("examples.jl")

Expand All @@ -66,19 +63,4 @@ export column_groups, row_groups
export sparsity_pattern
export compress, decompress, decompress!, decompress_single_color!

if !isdefined(Base, :get_extension)
using Requires
end

@static if !isdefined(Base, :get_extension)
function __init__()
@require BandedMatrices = "aae01518-5342-5314-be14-df237901396f" include(
"../ext/SparseMatrixColoringsBandedMatricesExt.jl"
)
@require BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0" include(
"../ext/SparseMatrixColoringsBlockBandedMatricesExt.jl"
)
end
end

end
Loading

0 comments on commit 4bad042

Please sign in to comment.