I have a python-igraph and need to make two copies of it and change each of the copies without changing the other one. Right now I am doing it like this:
copy1 = fullGraph
copy2 = fullGraph
But it seems that this is not the correct way of doing it since whatever I change in copy1, the same thing happen to copy2 (like deleting an edge). I was wondering what is the best way to make a copy of the main graph.
Thanks