(create_using=None)
| 213 | |
| 214 | @patch_docstring(nxa.frucht_graph) |
| 215 | def frucht_graph(create_using=None): |
| 216 | G = cycle_graph(7, create_using) |
| 217 | G.add_edges_from( |
| 218 | [ |
| 219 | [0, 7], |
| 220 | [1, 7], |
| 221 | [2, 8], |
| 222 | [3, 9], |
| 223 | [4, 9], |
| 224 | [5, 10], |
| 225 | [6, 10], |
| 226 | [7, 11], |
| 227 | [8, 11], |
| 228 | [8, 9], |
| 229 | [10, 11], |
| 230 | ] |
| 231 | ) |
| 232 | |
| 233 | G.name = "Frucht Graph" |
| 234 | return G |
| 235 | |
| 236 | |
| 237 | @patch_docstring(nxa.heawood_graph) |
nothing calls this directly
no test coverage detected