Skip to content

Commit 8b23b9d

Browse files
author
Release Manager
committed
gh-36017: fix accidental damage to classical_geometries.py from 94bca97 G was renamed to g in 3 places in docs of CossidentePenttilaGraph Here we rename these back URL: #36017 Reported by: Dima Pasechnik Reviewer(s): David Coudert, Matthias Köppe
2 parents cd6f6b8 + 767fc2c commit 8b23b9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sage/graphs/generators/classical_geometries.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1264,19 +1264,19 @@ def CossidentePenttilaGraph(q):
12641264
12651265
For `q=3` one gets Sims-Gewirtz graph. ::
12661266
1267-
sage: g = graphs.CossidentePenttilaGraph(3) # optional - gap_packages (grape)
1267+
sage: G = graphs.CossidentePenttilaGraph(3) # optional - gap_packages (grape)
12681268
sage: G.is_strongly_regular(parameters=True) # optional - gap_packages (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)
1273+
sage: G = graphs.CossidentePenttilaGraph(5) # optional - gap_packages (grape)
12741274
sage: G.is_strongly_regular(parameters=True) # optional - gap_packages (grape)
12751275
(378, 52, 1, 8)
12761276
12771277
TESTS::
12781278
1279-
sage: g = graphs.CossidentePenttilaGraph(7) # optional - gap_packages (grape) # long time
1279+
sage: G = graphs.CossidentePenttilaGraph(7) # optional - gap_packages (grape) # long time
12801280
sage: G.is_strongly_regular(parameters=True) # optional - gap_packages (grape) # long time
12811281
(1376, 150, 2, 18)
12821282
sage: graphs.CossidentePenttilaGraph(2)

0 commit comments

Comments
 (0)