Skip to content

Commit

Permalink
fix suggestions + cut one long line
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Sep 8, 2024
1 parent f6b9fa1 commit a441190
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/sage/graphs/digraph_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -782,10 +782,9 @@ def nauty_posetg(self, options='', debug=False):
The possible options, obtained as output of ``genposetg --help``::
n: the number of vertices
n: the number of vertices, between 0 and 16
o: digraph6 output in arbitrary order
t: digraph6 output in topological order
q: supresses statistics except for the final count
EXAMPLES::
Expand Down Expand Up @@ -1545,7 +1544,9 @@ def RandomDirectedGNM(self, n, m, loops=False):
sage: D.num_verts()
10
sage: D.loops()
[(0, 0, None), (1, 1, None), (2, 2, None), (3, 3, None), (4, 4, None), (5, 5, None), (6, 6, None), (7, 7, None), (8, 8, None), (9, 9, None)]
[(0, 0, None), (1, 1, None), (2, 2, None), (3, 3, None),
(4, 4, None), (5, 5, None), (6, 6, None), (7, 7, None),
(8, 8, None), (9, 9, None)]
TESTS::
Expand Down

0 comments on commit a441190

Please sign in to comment.