(create_using=None)
| 187 | |
| 188 | @patch_docstring(nxa.desargues_graph) |
| 189 | def desargues_graph(create_using=None): |
| 190 | G = LCF_graph(20, [5, -5, 9, -9], 5, create_using) |
| 191 | G.name = "Desargues Graph" |
| 192 | return G |
| 193 | |
| 194 | |
| 195 | @patch_docstring(nxa.diamond_graph) |
nothing calls this directly
no test coverage detected