First time here? Check out the FAQ!

Ask Your Question
1

How to deal with "GAPError: Error, reached the pre-set memory limit" ?

asked 2 years ago

Max Alekseyev gravatar image

updated 2 years ago

I get the following error while doing group theoretic computations in Sage:

GAPError: Error, reached the pre-set memory limit
(change it with the -o command line option)

How overcome it by allowing GAP use more memory? Where exactly I should use -o option?


Here is a code producing an error:

def a138077_q(q): G = PSL(3, q); d = G.order(); return d // max(H.order() for H in G.conjugacy_classes_subgroups() if H.order()<d)
print(a138077_q(13))
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 2 years ago

Max Alekseyev gravatar image

updated 2 years ago

A solution at this link suggests that -o should be added to sage.interfaces.gap.gap_cmd variable like

sage.interfaces.gap.gap_cmd = 'gap -r -o 4G '

For my problem, increase to 64G produced GAPError: Error, the perfect residuum is too large, but that's a different story.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2 years ago

Seen: 1,877 times

Last updated: Apr 06 '22