Ralf Hemmecke wrote:
> 
> Hi Waldek,
> 
> I somehow wonder why the stack exhausts in a GB computations.
> OK, maybe my polynomials get much too big, but FriCAS or rather SBCL
> claims here that the stack has exhausted.
> 
> The computation itself didn't use more than 1/3 of my 8GB RAM. Can I do
> something to let the computation continue?

There are options to increase space allocated to the stack.
However, it is a bit tricky to pass them to sbcl.  Probaly
better alternative is to find out what causes large stack
usage and change code to use heap.  In particular in many
cases library code uses recursion to process lists.  If
lists are short this is OK, but otherwise leads to stack
overflow.  So we need to find places which use recursion
on long lists and change them to iteration.

-- 
                              Waldek Hebisch

-- 
You received this message because you are subscribed to the Google Groups 
"FriCAS - computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/fricas-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to