Skip to content

Commit 92a3e2d

Browse files
committed
Remove optimized structured implementations
1 parent df53bde commit 92a3e2d

7 files changed

Lines changed: 1 addition & 405 deletions

Project.toml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,14 @@ DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
1010
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
1111
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1212
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
13-
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1413
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1514

16-
[weakdeps]
17-
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
18-
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
19-
BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0"
20-
21-
[extensions]
22-
SparseMatrixColoringsBandedMatricesExt = "BandedMatrices"
23-
SparseMatrixColoringsBlockBandedMatricesExt = ["BlockArrays", "BlockBandedMatrices"]
24-
2515
[compat]
2616
ADTypes = "1.2.1"
27-
BandedMatrices = "1.7.5"
28-
BlockArrays = "1.1.1"
29-
BlockBandedMatrices = "0.13.1"
3017
Compat = "3.46,4.2"
3118
DataStructures = "0.18"
3219
DocStringExtensions = "0.8,0.9"
3320
LinearAlgebra = "<0.0.1, 1"
3421
Random = "<0.0.1, 1"
35-
Requires = "1.3.0"
3622
SparseArrays = "<0.0.1, 1"
3723
julia = "1.6"
38-
39-
[extras]
40-
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
41-
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
42-
BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0"

docs/src/dev.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,3 @@ SparseMatrixColorings.what_fig_61
6565
SparseMatrixColorings.efficient_fig_1
6666
SparseMatrixColorings.efficient_fig_4
6767
```
68-
69-
## Misc
70-
71-
```@docs
72-
SparseMatrixColorings.cycle_range
73-
```

ext/SparseMatrixColoringsBandedMatricesExt.jl

Lines changed: 0 additions & 81 deletions
This file was deleted.

ext/SparseMatrixColoringsBlockBandedMatricesExt.jl

Lines changed: 0 additions & 119 deletions
This file was deleted.

src/SparseMatrixColorings.jl

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ include("matrices.jl")
5353
include("interface.jl")
5454
include("constant.jl")
5555
include("decompression.jl")
56-
include("structured.jl")
5756
include("check.jl")
5857
include("examples.jl")
5958

@@ -66,19 +65,4 @@ export column_groups, row_groups
6665
export sparsity_pattern
6766
export compress, decompress, decompress!, decompress_single_color!
6867

69-
if !isdefined(Base, :get_extension)
70-
using Requires
71-
end
72-
73-
@static if !isdefined(Base, :get_extension)
74-
function __init__()
75-
@require BandedMatrices = "aae01518-5342-5314-be14-df237901396f" include(
76-
"../ext/SparseMatrixColoringsBandedMatricesExt.jl"
77-
)
78-
@require BlockBandedMatrices = "ffab5731-97b5-5995-9138-79e8c1846df0" include(
79-
"../ext/SparseMatrixColoringsBlockBandedMatricesExt.jl"
80-
)
81-
end
82-
end
83-
8468
end

0 commit comments

Comments
 (0)