Make a safer/easier TRIM_PERM #3576
Labels
kind: discussion
discussions, questions, requests for comments, and so on
kind: enhancement
Label for issues suggesting enhancements; and for pull requests implementing enhancements
topic: kernel
TRIM_PERM/TrimPerm is used when a permutation's internal representation contains values bigger than it's LargestMovedPoint -- alll such values must map to themselves. In this case we can save memory by shrinking the permutation by removing all such values.
TRIM_PERM requires as an input a size to trim the permutation to. This has two problems:
A simple method would be to just calculate the LargestMovedPoint, and trim to that. This would make a method which was easier to use, and couldn't be used to corrupt memory (except in HPC-GAP, which is a different problem).
I suggest we introduce such a method (I can't think of a good name.. SquashPerm? ShrinkPerm?), and port all uses of TrimPerm over to it.
We could in principle make a general method (ShrinkAllocation?) and implement it for all types (Perm, Trans, Plists, records,...) which would try to free any unused memory. This method already exists for plists and strings, and is called ShrinkAllocationPlist and ShrinkAllocationString.
The text was updated successfully, but these errors were encountered: