Ask Your Question

weux082690's profile - activity

2024-01-31 16:23:58 +0200 marked best answer all_simple_paths generates AttributeError for graphs

Minimum working example (which causes error on CoCalc, but also on my own machine):

G = graphs.CompleteGraph(5)
G.all_paths(1,3)
G.all_simple_paths()

This gives an error saying that "all_simple_paths" is not an attribute for the "Graph" object, even though the function is present in the sage.graphs.path_enumeration module, where all_paths is from the line above, which works just fine. I have checked other functions in the module and found that other than all_paths, shortest_simple_paths seems to be the only other one in this module which works. The rest also give attribute errors.

I am wanting to use the all_simple_paths function due to its ability to have accept a list of starting and ending vertices, instead of just one start and end like the all_paths function. However, it refuses to work. Trying to import the module manually does not seem to effect anything. Does anyone know why this function does not work?

2024-01-31 16:23:58 +0200 received badge  Scholar (source)
2024-01-31 01:36:50 +0200 asked a question all_simple_paths generates AttributeError for graphs

all_simple_paths generates AttributeError for graphs Minimum working example (which causes error on CoCalc, but also on