# HG changeset patch
# User Frederic Chapoton <chapoton at math.univ-lyon1.fr>
# Date 1363808809 -3600
# Node ID a313b816190767d8b9100cc24e32b723ebe7c158
# Parent ba6714d7079b60bc9951f6908bebbad93388c333
trac #14271 sort by alphabetic order
diff --git a/sage/graphs/graph_generators.py b/sage/graphs/graph_generators.py
a
|
b
|
def __append_to_doc(methods): |
98 | 98 | "ChvatalGraph", |
99 | 99 | "ClebschGraph", |
100 | 100 | "CoxeterGraph", |
| 101 | "DesarguesGraph", |
101 | 102 | "DoubleStarSnark", |
102 | | "DesarguesGraph", |
103 | 103 | "DurerGraph", |
104 | 104 | "DyckGraph", |
105 | 105 | "EllinghamHorton54Graph", |
… |
… |
def __append_to_doc(methods): |
119 | 119 | "HeawoodGraph", |
120 | 120 | "HerschelGraph", |
121 | 121 | "HigmanSimsGraph", |
| 122 | "HoffmanGraph", |
122 | 123 | "HoffmanSingletonGraph", |
123 | | "SylvesterGraph", |
124 | | "SimsGewirtzGraph", |
125 | | "HoffmanGraph", |
126 | 124 | "HoltGraph", |
127 | 125 | "LjubljanaGraph", |
128 | 126 | "McGeeGraph", |
… |
… |
def __append_to_doc(methods): |
133 | 131 | "PetersenGraph", |
134 | 132 | "SchlaefliGraph", |
135 | 133 | "ShrikhandeGraph", |
| 134 | "SimsGewirtzGraph", |
| 135 | "SylvesterGraph", |
136 | 136 | "ThomsenGraph", |
137 | 137 | "Tutte12Cage", |
138 | 138 | "TutteCoxeterGraph", |
… |
… |
class GraphGenerators(): |
991 | 991 | PetersenGraph = staticmethod(sage.graphs.generators.smallgraphs.PetersenGraph) |
992 | 992 | SchlaefliGraph = staticmethod(sage.graphs.generators.smallgraphs.SchlaefliGraph) |
993 | 993 | ShrikhandeGraph = staticmethod(sage.graphs.generators.smallgraphs.ShrikhandeGraph) |
| 994 | SimsGewirtzGraph = staticmethod(sage.graphs.generators.smallgraphs.SimsGewirtzGraph) |
994 | 995 | SylvesterGraph = staticmethod(sage.graphs.generators.smallgraphs.SylvesterGraph) |
995 | | SimsGewirtzGraph = staticmethod(sage.graphs.generators.smallgraphs.SimsGewirtzGraph) |
996 | 996 | ThomsenGraph = staticmethod(sage.graphs.generators.smallgraphs.ThomsenGraph) |
997 | 997 | Tutte12Cage = staticmethod(sage.graphs.generators.smallgraphs.Tutte12Cage) |
998 | 998 | TutteCoxeterGraph = staticmethod(sage.graphs.generators.smallgraphs.TutteCoxeterGraph) |