Skip to content

Commit 9b9f9ed

Browse files
author
Matthias Koeppe
committed
src/sage/graphs/generators/classical_geometries.py: Use # optional - gap_package_grape
1 parent db22da1 commit 9b9f9ed

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/sage/features/gap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ def _is_present(self):
6868

6969

7070
def all_features():
71-
return []
71+
return [GapPackage("grape", spkg="gap_packages")]

src/sage/graphs/generators/classical_geometries.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1264,20 +1264,20 @@ def CossidentePenttilaGraph(q):
12641264
12651265
For `q=3` one gets Sims-Gewirtz graph. ::
12661266
1267-
sage: G = graphs.CossidentePenttilaGraph(3) # optional - gap_packages (grape)
1268-
sage: G.is_strongly_regular(parameters=True) # optional - gap_packages (grape)
1267+
sage: G = graphs.CossidentePenttilaGraph(3) # optional - gap_package_grape
1268+
sage: G.is_strongly_regular(parameters=True) # optional - gap_package_grape
12691269
(56, 10, 0, 2)
12701270
12711271
For `q>3` one gets new graphs. ::
12721272
1273-
sage: G = graphs.CossidentePenttilaGraph(5) # optional - gap_packages (grape)
1274-
sage: G.is_strongly_regular(parameters=True) # optional - gap_packages (grape)
1273+
sage: G = graphs.CossidentePenttilaGraph(5) # optional - gap_package_grape
1274+
sage: G.is_strongly_regular(parameters=True) # optional - gap_package_grape
12751275
(378, 52, 1, 8)
12761276
12771277
TESTS::
12781278
1279-
sage: G = graphs.CossidentePenttilaGraph(7) # optional - gap_packages (grape) # long time
1280-
sage: G.is_strongly_regular(parameters=True) # optional - gap_packages (grape) # long time
1279+
sage: G = graphs.CossidentePenttilaGraph(7) # optional - gap_package_grape # long time
1280+
sage: G.is_strongly_regular(parameters=True) # optional - gap_package_grape # long time
12811281
(1376, 150, 2, 18)
12821282
sage: graphs.CossidentePenttilaGraph(2)
12831283
Traceback (most recent call last):

0 commit comments

Comments
 (0)