On Thu, Oct 22, 2009 at 8:00 AM, Mike Hansen <[email protected]> wrote: > > 2009/10/22 Thierry Dumont <[email protected]>: >> Is there any way to pass such memory size option to gap.console() ? > > Currently, GAP is started with the following command: > > sage: gap._Expect__command > 'gap -r -L /home/mike/.sage//gap/workspace-2869469835351106948 -b -p > -T -o 9999G /opt/sage/data//extcode/gap/sage.g' > > You can change it to whatever you want with: > > sage: gap._Expect_command = 'gap -custom -options' > > Not the cleanest, but it works.
This might work, looks cleaner, and won't break the workspace options being added as above: sage: sage.interfaces.gap.gap_cmd = 'gap -r -o 4G ' William --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
