File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/sage/graphs/generators Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1264,19 +1264,19 @@ def CossidentePenttilaGraph(q):
1264
1264
1265
1265
For `q=3` one gets Sims-Gewirtz graph. ::
1266
1266
1267
- sage: g = graphs.CossidentePenttilaGraph(3) # optional - gap_packages (grape)
1267
+ sage: G = graphs.CossidentePenttilaGraph(3) # optional - gap_packages (grape)
1268
1268
sage: G.is_strongly_regular(parameters=True) # optional - gap_packages (grape)
1269
1269
(56, 10, 0, 2)
1270
1270
1271
1271
For `q>3` one gets new graphs. ::
1272
1272
1273
- sage: g = graphs.CossidentePenttilaGraph(5) # optional - gap_packages (grape)
1273
+ sage: G = graphs.CossidentePenttilaGraph(5) # optional - gap_packages (grape)
1274
1274
sage: G.is_strongly_regular(parameters=True) # optional - gap_packages (grape)
1275
1275
(378, 52, 1, 8)
1276
1276
1277
1277
TESTS::
1278
1278
1279
- sage: g = graphs.CossidentePenttilaGraph(7) # optional - gap_packages (grape) # long time
1279
+ sage: G = graphs.CossidentePenttilaGraph(7) # optional - gap_packages (grape) # long time
1280
1280
sage: G.is_strongly_regular(parameters=True) # optional - gap_packages (grape) # long time
1281
1281
(1376, 150, 2, 18)
1282
1282
sage: graphs.CossidentePenttilaGraph(2)
You can’t perform that action at this time.
0 commit comments