@@ -86,7 +86,7 @@ class BarbellGraph(_NetworkXBuiltin):
8686 :Barbell graph:https://en.wikipedia.org/wiki/Barbell_graph
8787 </url> (
8888 <url>
89- :NetworkX:https://networkx.org/documentation/stable /reference/\
89+ :NetworkX:https://networkx.org/documentation/networkx-2.8.8 /reference/\
9090 generated/networkx.generators.classic.barbell_graph.html</url>
9191)
9292
@@ -144,7 +144,7 @@ class BinomialTree(_NetworkXBuiltin):
144144 :Binomial tree:https://en.wikipedia.org/wiki/Binomial_tree
145145 </url> (
146146 <url>
147- :NetworkX:https://networkx.org/documentation/stable /reference/\
147+ :NetworkX:https://networkx.org/documentation/networkx-2.8.8 /reference/\
148148 generated/networkx.generators.classic.binomial_tree.html</url>,
149149 <url>
150150 :WMA:https://reference.wolfram.com/language/ref/BinomialTree.html
@@ -198,6 +198,9 @@ def eval(
198198
199199class CompleteGraph (_NetworkXBuiltin ):
200200 """
201+ <url>
202+ :WMA:https://reference.wolfram.com/language/ref/CompleteGraph.html
203+ </url>
201204 <dl>
202205 <dt>'CompleteGraph[$n$]'
203206 <dd>Returns the complete graph with $n$ vertices, $K_n$.
@@ -226,7 +229,12 @@ def eval_multipartite(self, n, evaluation: Evaluation, options: dict):
226229
227230
228231class CompleteKaryTree (_NetworkXBuiltin ):
229- """<dl>
232+ """
233+ <url>
234+ :K-ary Tree:https://en.wikipedia.org/wiki/M-ary_tree
235+ </url>
236+
237+ <dl>
230238 <dt>'CompleteKaryTree[$n$, $k$]'
231239 <dd>Creates a complete $k$-ary tree of $n$ levels.
232240 </dl>
@@ -269,10 +277,14 @@ def eval_2(self, n, expression, evaluation: Evaluation, options: dict):
269277
270278
271279class CycleGraph (_NetworkXBuiltin ):
272- """<dl>
273- <dt>'CycleGraph[$n$]'
274- <dd>Returns the cycle graph with $n$ vertices $C_n$.
275- </dl>
280+ """
281+ <url>:Cycle Graph:
282+ https://en.wikipedia.org/wiki/Cycle_graph</url>
283+
284+ <dl>
285+ <dt>'CycleGraph[$n$]'
286+ <dd>Returns the cycle graph with $n$ vertices $C_n$.
287+ </dl>
276288
277289 >> CycleGraph[5, PlotLabel -> "C_i"]
278290 = -Graph-
@@ -289,8 +301,13 @@ def eval(self, n: Integer, expression, evaluation: Evaluation, options: dict):
289301 return eval_hkn_harary (self , Integer (2 ), n , expression , evaluation , options )
290302
291303
304+ # It seems that this makes the same than CompleteKaryTree
292305class FullRAryTree (_NetworkXBuiltin ):
293306 """
307+ <url>
308+ :K-ary Tree:https://en.wikipedia.org/wiki/M-ary_tree
309+ </url>
310+
294311 <dl>
295312 <dt>'FullRAryTree[$r$, $n$]'
296313 <dd>Creates a full $r$-ary tree of $n$ vertices.
@@ -321,6 +338,11 @@ def eval(self, r, n, expression, evaluation: Evaluation, options: dict):
321338
322339class GraphAtlas (_NetworkXBuiltin ):
323340 """
341+ <url>:NetworkX:
342+ https://networkx.org/documentation/networkx-2.8.8/reference/\
343+ generated/networkx.generators.atlas.graph_atlas.html
344+ </url>
345+
324346 <dl>
325347 <dt>'GraphAtlas[$n$]'
326348 <dd>Returns graph number $i$ from the NetworkX's Graph \
@@ -357,6 +379,10 @@ def eval(self, n, expression, evaluation: Evaluation, options: dict):
357379
358380class HknHararyGraph (_NetworkXBuiltin ):
359381 """
382+ <url>:NetworkX:
383+ https://networkx.org/documentation/networkx-2.8.8/reference\
384+ /generated/networkx.generators.harary_graph.hkn_harary_graph.html#hkn-harary-graph
385+ </url>
360386 <dl>
361387 <dt>'HknHararyGraph[$k$, $n$]'
362388 <dd>Returns the Harary graph with given node connectivity and node number.
@@ -387,6 +413,10 @@ def eval(self, k, n, expression, evaluation: Evaluation, options: dict):
387413
388414class HmnHararyGraph (_NetworkXBuiltin ):
389415 """
416+ <url>:NetworkX:
417+ https://networkx.org/documentation/networkx-2.8.8/reference\
418+ /generated/networkx.generators.harary_graph.hnm_harary_graph.html
419+ </url>
390420 <dl>
391421 <dt>'HmnHararyGraph[$m$, $n$]'
392422 <dd>Returns the Harary graph with given numbers of nodes and edges.
@@ -437,6 +467,11 @@ def eval(self, n, m, expression, evaluation: Evaluation, options: dict):
437467
438468class KaryTree (_NetworkXBuiltin ):
439469 """
470+ <url>
471+ :K-ary Tree:https://en.wikipedia.org/wiki/M-ary_tree
472+ </url>
473+
474+
440475 <dl>
441476 <dt>'KaryTree[$r$, $n$]'
442477 <dd>Creates binary tree of $n$ vertices.
@@ -478,6 +513,12 @@ def eval_with_k(
478513
479514class LadderGraph (_NetworkXBuiltin ):
480515 """
516+ <url>
517+ :Ladder graph:https://en.wikipedia.org/wiki/Ladder_graph
518+ </url>(<url>:NetworkX:
519+ https://networkx.org/documentation/networkx-2.8.8/reference\
520+ /generated/networkx.generators.classic.ladder_graph.html
521+ </url>)
481522 <dl>
482523 <dt>'LadderGraph[$n$]'
483524 <dd>Returns the Ladder graph of length $n$.
@@ -514,6 +555,10 @@ def eval(
514555
515556class PathGraph (_NetworkXBuiltin ):
516557 """
558+ <url>
559+ :Path graph:https://en.wikipedia.org/wiki/Path_graph
560+ </url>(<url>:WMA:https://reference.wolfram.com/language/ref/PathGraph.html
561+ </url>)
517562 <dl>
518563 <dt>'PathGraph[{$v_1$, $v_2$, ...}]'
519564 <dd>Returns a Graph with a path with vertices $v_i$ and \
@@ -542,6 +587,10 @@ def edges():
542587
543588class RandomTree (_NetworkXBuiltin ):
544589 """
590+ <url>:NetworkX:
591+ https://networkx.org/documentation/networkx-2.8.8/reference\
592+ /generated/networkx.generators.trees.random_tree.html
593+ </url>
545594 <dl>
546595 <dt>'RandomTree[$n$]'
547596 <dd>Returns a uniformly random tree on $n$ nodes.
@@ -578,6 +627,16 @@ def eval(
578627
579628class StarGraph (_NetworkXBuiltin ):
580629 """
630+ <url>
631+ :Path graph:https://en.wikipedia.org/wiki/Star_graph
632+ </url>(
633+ <url>:NetworkX:
634+ https://networkx.org/documentation/networkx-2.8.8/reference\
635+ /generated/networkx.generators.classic.star_graph.html
636+ </url>,
637+ <url>:WMA:
638+ https://reference.wolfram.com/language/ref/StarGraph.html
639+ </url>)
581640 <dl>
582641 <dt>'StarGraph[$n$]'
583642 <dd>Returns a star graph with $n$ vertices.
0 commit comments