In doc.sagemath.org/html/en/reference/graphs/sage/graphs/graph_generators.html#sage.graphs.graph_generators.GraphGenerators.CubeConnectedCycle , it says static CubeConnectedCycle(d). But when I try to run the following example given in the same page above it is giving an error.
d = 3 g = graphs.CubeConnectedCycle(d)
The error shown is "AttributeError: GraphGenerators instance has no attribute 'CubeConnectedCycle'" Can someone tell me what went wrong? Thanks in advance