(create_using=None)
| 206 | |
| 207 | @patch_docstring(nxa.dodecahedral_graph) |
| 208 | def dodecahedral_graph(create_using=None): |
| 209 | G = LCF_graph(20, [10, 7, 4, -4, -7, 10, -4, 7, -7, 4], 2, create_using) |
| 210 | G.name = "Dodecahedral Graph" |
| 211 | return G |
| 212 | |
| 213 | |
| 214 | @patch_docstring(nxa.frucht_graph) |
nothing calls this directly
no test coverage detected