Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
trac #18774: internet
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanncohen committed Jun 25, 2015
1 parent 93801c8 commit e977c17
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions src/sage/graphs/generators/smallgraphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3336,16 +3336,16 @@ def LivingstoneGraph():
EXAMPLES::
sage: g = graphs.LivingstoneGraph() # optional - gap_packages
sage: g.order() # optional - gap_packages
sage: g = graphs.LivingstoneGraph() # optional - gap_packages internet
sage: g.order() # optional - gap_packages internet
266
sage: g.size() # optional - gap_packages
sage: g.size() # optional - gap_packages internet
1463
sage: g.girth() # optional - gap_packages
sage: g.girth() # optional - gap_packages internet
5
sage: g.is_vertex_transitive() # optional - gap_packages
sage: g.is_vertex_transitive() # optional - gap_packages internet
True
sage: g.is_distance_regular() # optional - gap_packages
sage: g.is_distance_regular() # optional - gap_packages internet
True
"""
from sage.groups.perm_gps.permgroup_named import JankoGroup
Expand Down
8 changes: 4 additions & 4 deletions src/sage/groups/perm_gps/permgroup_named.py
Original file line number Diff line number Diff line change
Expand Up @@ -990,14 +990,14 @@ def __init__(self, n):
EXAMPLES::
sage: G = groups.permutation.Janko(1); G # optional - gap_packages
sage: G = groups.permutation.Janko(1); G # optional - gap_packages internet
Janko group J1 of order 175560 as a permutation group
TESTS::
sage: G.category() # optional - gap_packages
sage: G.category() # optional - gap_packages internet
Category of finite permutation groups
sage: TestSuite(G).run(skip=["_test_enumerated_set_contains", "_test_enumerated_set_iter_list"]) # optional - gap_packages
sage: TestSuite(G).run(skip=["_test_enumerated_set_contains", "_test_enumerated_set_iter_list"]) # optional - gap_packages internet
"""
from sage.interfaces.gap import gap
if n not in [1,2,3]:
Expand All @@ -1011,7 +1011,7 @@ def _repr_(self):
"""
EXAMPLES::
sage: G = groups.permutation.Janko(1); G # optional - gap_packages
sage: G = groups.permutation.Janko(1); G # optional - gap_packages internet
Janko group J1 of order 175560 as a permutation group
"""
return "Janko group J%s of order %s as a permutation group"%(self._n,self.order())
Expand Down

0 comments on commit e977c17

Please sign in to comment.