(create_using=None)
| 381 | |
| 382 | @patch_docstring(nxa.tetrahedral_graph) |
| 383 | def tetrahedral_graph(create_using=None): |
| 384 | G = complete_graph(4, create_using) |
| 385 | G.name = "Platonic Tetrahedral graph" |
| 386 | return G |
| 387 | |
| 388 | |
| 389 | @patch_docstring(nxa.truncated_cube_graph) |
nothing calls this directly
no test coverage detected