We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb40942 commit 8e8417fCopy full SHA for 8e8417f
test/test_greedy_star.jl
@@ -45,14 +45,14 @@ colors.
45
46
=#
47
48
-g = SimpleGraph(4)
+gx = SimpleGraph(4)
49
50
-add_edge!(g,1,2)
51
-add_edge!(g,1,3)
52
-add_edge!(g,2,3)
53
-add_edge!(g,3,4)
+add_edge!(gx,1,2)
+add_edge!(gx,1,3)
+add_edge!(gx,2,3)
+add_edge!(gx,3,4)
54
55
-push!(test_graphs, g)
+push!(test_graphs, gx)
56
57
#begin testing
58
for i in 1:6
@@ -91,7 +91,7 @@ for i in 1:6
91
92
#test condition 2
93
for j = vertices(g)
94
- walk = LighGraphs.saw(g, j, 4)
+ walk = LightGraphs.saw(g, j, 4)
95
walk_colors = zeros(Int64, 0)
96
if length(walk) >= 4
97
for t in walk
0 commit comments