Altering stack space
By danpost, with 7 replies.
Last reply by danpost, over 12 years ago:
@davmac, thanks again! I did find the problem. Actually, there were two (related).
(1) I had a 'while' where there should have been an 'if' (when removing paired parenthesis)
(2) needed an 'else' after that same 'if' statement
The location was in the 'evalFactor' method of the 'Graph' class.
You can change that in your copy to have a corrected one.
The 'while' statement was immediately before the 'if (isFunction(factor))' statement.