Question: too many levels of recusion

Hi everyone,

I've been tinkering with this problem for the past week but I'm suck :S!  I've tried google, mapleprimes, and the maple help file and nothing.

It's really a quite bizzare problem where I can use a procdure that I've defined... so long as I don't use it in a loop :S.

The procudure (called OVLM) takes 2 numbers as inputs and outputs an algebraic expression with 4 parameters as outputs.

------------------------
Example:
> OVLM(3,7);

33)+(α77)+(α3+β7)

------------------------------------

now if I do

> OVLM(1,1);

Maple gives me the answer no problem, but if I try putting that in even the simplest loop

> for i from 1 to 2 do
       OVLM(1,1)
    od;

Maple says "Error, (in type/algfun) too many levels of recusion".

 

So my question is, how do I increase the number of recusion levels that Maple allows?
Is there a way to increase the memory size or stack size that linux or windows allots for Maple?

 

Thanks in advance,

-Mike

Please Wait...