@@ -239,7 +239,7 @@ def ButterflyGraph(self, n, vertices='strings', immutable=False):
239239 (``vertices='vectors'``)
240240
241241 - ``immutable`` -- boolean (default: ``False``); whether to return
242- an immutable or mutable digraph.
242+ an immutable or mutable digraph
243243
244244 EXAMPLES::
245245
@@ -353,7 +353,7 @@ def Path(self, n, immutable=False):
353353 - ``n`` -- integer; number of vertices in the path
354354
355355 - ``immutable`` -- boolean (default: ``False``); whether to return
356- an immutable or mutable digraph.
356+ an immutable or mutable digraph
357357
358358 EXAMPLES::
359359
@@ -383,7 +383,7 @@ def StronglyRegular(self, n, immutable=False):
383383 - ``n`` -- integer; the number of vertices of the digraph
384384
385385 - ``immutable`` -- boolean (default: ``False``); whether to return
386- an immutable or mutable digraph.
386+ an immutable or mutable digraph
387387
388388 .. SEEALSO::
389389
@@ -435,7 +435,7 @@ def Paley(self, q, immutable=False):
435435 - ``q`` -- integer; the number of vertices of the digraph
436436
437437 - ``immutable`` -- boolean (default: ``False``); whether to return
438- an immutable or mutable digraph.
438+ an immutable or mutable digraph
439439
440440 .. SEEALSO::
441441
@@ -497,7 +497,7 @@ def TransitiveTournament(self, n, immutable=False):
497497 - ``n`` -- integer; number of vertices in the tournament
498498
499499 - ``immutable`` -- boolean (default: ``False``); whether to return
500- an immutable or mutable digraph.
500+ an immutable or mutable digraph
501501
502502 EXAMPLES::
503503
@@ -546,7 +546,7 @@ def RandomTournament(self, n, immutable=False):
546546 - ``n`` -- integer; number of vertices
547547
548548 - ``immutable`` -- boolean (default: ``False``); whether to return
549- an immutable or mutable digraph.
549+ an immutable or mutable digraph
550550
551551 EXAMPLES::
552552
@@ -611,7 +611,7 @@ def tournaments_nauty(self, n,
611611 `<https://pallini.di.uniroma1.it>`_.
612612
613613 - ``immutable`` -- boolean (default: ``False``); whether to return
614- immutable or mutable digraphs.
614+ immutable or mutable digraphs
615615
616616 EXAMPLES::
617617
@@ -710,7 +710,7 @@ def nauty_directg(self, graphs, options='', debug=False, immutable=False):
710710 standard error and standard output are displayed
711711
712712 - ``immutable`` -- boolean (default: ``False``); whether to return
713- immutable or mutable digraphs.
713+ immutable or mutable digraphs
714714
715715 EXAMPLES::
716716
@@ -826,7 +826,7 @@ def nauty_posetg(self, options='', debug=False, immutable=False):
826826 beginning with ">E" indicates an error with the input.
827827
828828 - ``immutable`` -- boolean (default: ``False``); whether to return
829- immutable or mutable posets.
829+ immutable or mutable posets
830830
831831 The possible options, obtained as output of ``genposetg --help``::
832832
@@ -875,7 +875,7 @@ def Complete(self, n, loops=False, immutable=False):
875875 not, i.e., edges from `u` to itself
876876
877877 - ``immutable`` -- boolean (default: ``False``); whether to return
878- an immutable or mutable digraph.
878+ an immutable or mutable digraph
879879
880880 .. SEEALSO::
881881
@@ -923,7 +923,7 @@ def Circuit(self, n, immutable=False):
923923 - ``n`` -- integer; number of vertices
924924
925925 - ``immutable`` -- boolean (default: ``False``); whether to return
926- an immutable or mutable digraph.
926+ an immutable or mutable digraph
927927
928928 EXAMPLES:
929929
@@ -962,7 +962,7 @@ def Circulant(self, n, integers, immutable=False):
962962 is an integer
963963
964964 - ``immutable`` -- boolean (default: ``False``); whether to return
965- an immutable or mutable digraph.
965+ an immutable or mutable digraph
966966
967967 EXAMPLES:
968968
@@ -1415,7 +1415,7 @@ def RandomDirectedAcyclicGraph(self, n, p, weight_max=None, immutable=False):
14151415 are assigned a random integer weight between ``1`` and ``weight_max``.
14161416
14171417 - ``immutable`` -- boolean (default: ``False``); whether to return an
1418- immutable or mutable digraph.
1418+ immutable or mutable digraph
14191419
14201420 EXAMPLES::
14211421
@@ -1503,7 +1503,7 @@ def RandomDirectedGN(self, n, kernel=None, seed=None, immutable=False):
15031503 random number generator (default: ``None``)
15041504
15051505 - ``immutable`` -- boolean (default: ``False``); whether to return an
1506- immutable or mutable digraph.
1506+ immutable or mutable digraph
15071507
15081508 EXAMPLES::
15091509
@@ -1546,7 +1546,7 @@ def RandomDirectedGNC(self, n, seed=None, immutable=False):
15461546 random number generator (default: ``None``)
15471547
15481548 - ``immutable`` -- boolean (default: ``False``); whether to return an
1549- immutable or mutable digraph.
1549+ immutable or mutable digraph
15501550
15511551 EXAMPLES::
15521552
@@ -1583,7 +1583,7 @@ def RandomDirectedGNP(self, n, p, loops=False, seed=None, immutable=False):
15831583 generator
15841584
15851585 - ``immutable`` -- boolean (default: ``False``); whether to return an
1586- immutable or mutable digraph.
1586+ immutable or mutable digraph
15871587
15881588 PLOTTING: When plotting, this graph will use the default spring-layout
15891589 algorithm, unless a position dictionary is specified.
@@ -1619,7 +1619,7 @@ def RandomDirectedGNM(self, n, m, loops=False, immutable=False):
16191619 - ``loops`` -- boolean (default: ``False``); whether to allow loops
16201620
16211621 - ``immutable`` -- boolean (default: ``False``); whether to return an
1622- immutable or mutable digraph.
1622+ immutable or mutable digraph
16231623
16241624 PLOTTING: When plotting, this graph will use the default spring-layout
16251625 algorithm, unless a position dictionary is specified.
@@ -1755,7 +1755,7 @@ def RandomDirectedGNR(self, n, p, seed=None, immutable=False):
17551755 random number generator (default: ``None``)
17561756
17571757 - ``immutable`` -- boolean (default: ``False``); whether to return an
1758- immutable or mutable digraph.
1758+ immutable or mutable digraph
17591759
17601760 EXAMPLES::
17611761
@@ -1793,7 +1793,7 @@ def RandomSemiComplete(self, n, immutable=False):
17931793 - ``n`` -- integer; the number of nodes
17941794
17951795 - ``immutable`` -- boolean (default: ``False``); whether to return an
1796- immutable or mutable digraph.
1796+ immutable or mutable digraph
17971797
17981798 .. SEEALSO::
17991799
0 commit comments