Skip to content

Commit 54e0c1b

Browse files
Removed LightGraphs and Clp dependencies from docs subfolders.
1 parent 5054f4f commit 54e0c1b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[deps]
2-
Clp = "e2554f3b-3117-50c0-817c-e040a3ddf72d"
32
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
43
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
4+
HiGHS = "87dc4568-4c63-4d18-b0c0-bb2238e4078b"
55
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
66
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
77
MultiscaleGraphSignalTransforms = "cc44fc10-d0fb-5545-af72-ba1cb661a341"
@@ -10,11 +10,11 @@ Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
1010
WaveletsExt = "8f464e1e-25db-479f-b0a5-b7680379e03f"
1111

1212
[compat]
13-
Clp = "1.0.1"
1413
Documenter = "0.26, 0.27, 1"
15-
Graphs = "1.6.0"
16-
LaTeXStrings = "1.2"
14+
Graphs = ">= 1.6.0"
15+
HiGHS = ">= 1"
16+
LaTeXStrings = ">= 1.2"
1717
MultiscaleGraphSignalTransforms = "1.7"
1818
MultivariateStats = "0.8, 0.9, 0.10"
19-
Plots = "1.25"
19+
Plots = ">= 1.25"
2020
WaveletsExt = "0.1, 0.2"

docs/src/examples/Grid7x3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
## Set up
44
```@example grid
5-
using MultiscaleGraphSignalTransforms, LightGraphs, MultivariateStats
5+
using MultiscaleGraphSignalTransforms, Graphs, MultivariateStats
66
using Plots, LaTeXStrings, LinearAlgebra
77
88
# compute the graph related quantities
99
Nx, Ny = 7, 3
10-
G = LightGraphs.grid([Nx, Ny])
10+
G = Graphs.SimpleGraphs.grid([Nx, Ny])
1111
N = nv(G)
1212
L = Matrix(laplacian_matrix(G))
1313
Q = incidence_matrix(G; oriented = true)

docs/src/examples/Sunflower.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SunFlowerGraph
44
```
55
Let us see how to visualize the sunflower graph by `gplot()` and `scatter_gplot()`.
66
```@example sunflower
7-
using MultiscaleGraphSignalTransforms, LightGraphs, Plots
7+
using MultiscaleGraphSignalTransforms, Graphs, Plots
88
99
# construct the sunflower graph
1010
G, L, X = SunFlowerGraph(); N = nv(G)

0 commit comments

Comments
 (0)