Skip to content

Commit 223e99f

Browse files
committed
Remove OptimalColoringAlgorithm
1 parent 4ca6507 commit 223e99f

7 files changed

Lines changed: 0 additions & 136 deletions

File tree

Project.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,19 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1515
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
1616
CliqueTrees = "60701a23-6482-424a-84db-faee86b9b1f8"
1717
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
18-
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
19-
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
2018

2119
[extensions]
2220
SparseMatrixColoringsCUDAExt = "CUDA"
2321
SparseMatrixColoringsCliqueTreesExt = "CliqueTrees"
2422
SparseMatrixColoringsColorsExt = "Colors"
25-
SparseMatrixColoringsJuMPExt = ["JuMP", "MathOptInterface"]
2623

2724
[compat]
2825
ADTypes = "1.2.1"
2926
CUDA = "5.8.2"
3027
CliqueTrees = "1"
3128
Colors = "0.12.11, 0.13"
3229
DocStringExtensions = "0.8,0.9"
33-
JuMP = "1.29.1"
3430
LinearAlgebra = "<0.0.1, 1"
35-
MathOptInterface = "1.45.0"
3631
PrecompileTools = "1.2.1"
3732
Random = "<0.0.1, 1"
3833
SparseArrays = "<0.0.1, 1"

docs/src/api.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,8 @@ SparseMatrixColorings
1717
coloring
1818
fast_coloring
1919
ColoringProblem
20-
```
21-
22-
## Coloring algorithms
23-
24-
```@docs
2520
GreedyColoringAlgorithm
2621
ConstantColoringAlgorithm
27-
OptimalColoringAlgorithm
2822
```
2923

3024
## Result analysis

ext/SparseMatrixColoringsJuMPExt.jl

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

src/SparseMatrixColorings.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ include("decompression.jl")
5656
include("check.jl")
5757
include("examples.jl")
5858
include("show_colors.jl")
59-
include("optimal.jl")
6059

6160
include("precompile.jl")
6261

@@ -65,7 +64,6 @@ export DynamicDegreeBasedOrder, SmallestLast, IncidenceDegree, DynamicLargestFir
6564
export PerfectEliminationOrder
6665
export ColoringProblem, GreedyColoringAlgorithm, AbstractColoringResult
6766
export ConstantColoringAlgorithm
68-
export OptimalColoringAlgorithm
6967
export coloring, fast_coloring
7068
export column_colors, row_colors, ncolors
7169
export column_groups, row_groups

src/optimal.jl

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

test/optimal.jl

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

test/runtests.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@ include("utils.jl")
5858
@testset "Constant coloring" begin
5959
include("constant.jl")
6060
end
61-
@testset "Optimal coloring" begin
62-
include("optimal.jl")
63-
end
6461
@testset "ADTypes coloring algorithms" begin
6562
include("adtypes.jl")
6663
end

0 commit comments

Comments
 (0)