Skip to content

Commit d54a8b2

Browse files
committed
fix random regular graph
1 parent f259f05 commit d54a8b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pygsp/graphs/randomregular.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(self, N=64, k=6, maxIter=10, **kwargs):
6767
# print(progess)
6868
if edgesTested % 5000 == 0:
6969
self.logger.debug("createRandRegGraph() progress: edges= "
70-
"{}/{}.".format(edgesTested, n*k/2))
70+
"{}/{}.".format(edgesTested, N*k/2))
7171

7272
# chose at random 2 half edges
7373
i1 = np.random.randint(0, np.shape(U)[0])

0 commit comments

Comments
 (0)