display output completely in GAP

67 Views Asked by At

If GAP computes large output it will be shortenend by ( [...] ). How can I display the whole output?

Unfortunately I have not found an answer yet.

Thanks!

1

There are 1 best solutions below

1
On

GAP has several kinds of printing functions: Results returned from the command line are processed by `View' (which as you noted shortens large permutations -- this is to avoid filling up the screen with data one typically does not need to see explicitly).

If you call `Print' on your result, for example

g:=Image(RegularActionHomomorphism(MathieuGroup(11)));
Print(g.1);

you get the full gory output.