File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11[deps ]
2- Clp = " e2554f3b-3117-50c0-817c-e040a3ddf72d"
32Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
43Graphs = " 86223c79-3864-5bf0-83f7-82e725a168b6"
4+ HiGHS = " 87dc4568-4c63-4d18-b0c0-bb2238e4078b"
55LaTeXStrings = " b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
66LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
77MultiscaleGraphSignalTransforms = " cc44fc10-d0fb-5545-af72-ba1cb661a341"
@@ -10,11 +10,11 @@ Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
1010WaveletsExt = " 8f464e1e-25db-479f-b0a5-b7680379e03f"
1111
1212[compat ]
13- Clp = " 1.0.1"
1413Documenter = " 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"
1717MultiscaleGraphSignalTransforms = " 1.7"
1818MultivariateStats = " 0.8, 0.9, 0.10"
19- Plots = " 1.25"
19+ Plots = " >= 1.25"
2020WaveletsExt = " 0.1, 0.2"
Original file line number Diff line number Diff line change 22
33## Set up
44``` @example grid
5- using MultiscaleGraphSignalTransforms, LightGraphs , MultivariateStats
5+ using MultiscaleGraphSignalTransforms, Graphs , MultivariateStats
66using Plots, LaTeXStrings, LinearAlgebra
77
88# compute the graph related quantities
99Nx, Ny = 7, 3
10- G = LightGraphs .grid([Nx, Ny])
10+ G = Graphs.SimpleGraphs .grid([Nx, Ny])
1111N = nv(G)
1212L = Matrix(laplacian_matrix(G))
1313Q = incidence_matrix(G; oriented = true)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ SunFlowerGraph
44```
55Let 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
1010G, L, X = SunFlowerGraph(); N = nv(G)
You can’t perform that action at this time.
0 commit comments