Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Commit 231c656

Browse files
fix deprecations
1 parent baed4cb commit 231c656

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_greedy_star.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ for i in 1:6
7272

7373
#test condition 2
7474
for j = vertices(g)
75-
walk = LightGraphs.saw(g, j, 4)
75+
walk = LightGraphs.self_avoiding_walk(g, j, 4)
7676
walk_colors = zeros(Int64, 0)
7777
if length(walk) >= 4
7878
for t in walk
@@ -92,7 +92,7 @@ for i in 1:6
9292

9393
#test condition 2
9494
for j = vertices(g)
95-
walk = LightGraphs.saw(g, j, 4)
95+
walk = LightGraphs.self_avoiding_walk(g, j, 4)
9696
walk_colors = zeros(Int64, 0)
9797
if length(walk) >= 4
9898
for t in walk

0 commit comments

Comments
 (0)