Open
Description
In GAP, we get:
gap> DeclareGlobalVariable("xyz");
gap> IsMutable(xyz);
false
gap> IsIdenticalObj(xyz, DEEP_COPY_OBJ(xyz));
true
Whereas in HPC-GAP this returns false
.
There doesn't seem to be a good reason to make a new object -- in this case the original and new objects are put in the same region.
I tried diving into the code to find out how to stop this happening, but couldn't easily figure out how to change it.
Activity