You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function rotate in FatGraph has a weird comportment if the edge e in argument is a loop on a vertex.
For example with vp = (0, 1, 2, 3) and rotate(0) it will raise an error RuntimeError: wrong number of vertices: nv=1 vp=(0,2,3)(1).
We should either raise an exception or determine the expected comportment in this case.
The text was updated successfully, but these errors were encountered:
The function
rotate
inFatGraph
has a weird comportment if the edge e in argument is a loop on a vertex.For example with
vp = (0, 1, 2, 3)
androtate(0)
it will raise an errorRuntimeError: wrong number of vertices: nv=1 vp=(0,2,3)(1)
.We should either raise an exception or determine the expected comportment in this case.
The text was updated successfully, but these errors were encountered: