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
It would be good to have a deep copy operation that can give you a copy of the current model to mess with. This could take the place of reloading a model after making changes, so you could take the copy after some changes, make other changes, and then drop them.
This could actually be pretty difficult, not sure.
I think a good syntax would be similar to that in networkx in that the copy function is a member of the object that it is copying. However, I expect the deepcopy is really what will be most useful.
The text was updated successfully, but these errors were encountered:
I have been doing some test with the copy and I think it will not be so easy to implement as the calls inside the components are kept to the original data, e.g.:
a -> b
c = copy(a)
d = copy (b)
we would like to c -> d, but we will have c -> b, running:
It would be good to have a deep copy operation that can give you a copy of the current model to mess with. This could take the place of reloading a model after making changes, so you could take the copy after some changes, make other changes, and then drop them.
This could actually be pretty difficult, not sure.
I think a good syntax would be similar to that in networkx in that the copy function is a member of the object that it is copying. However, I expect the deepcopy is really what will be most useful.
The text was updated successfully, but these errors were encountered: