Stack Overflow Error

Issue #141 closed
Trần lê duy created an issue

I get a lot of bug reports when using the equation solverScreenshot_1.png

Comments (5)

  1. Axel Kramer repo owner

    You can catch StackOverflowError exceptions, if the recursion depth is to deep in your programs.

    Try to set limits in the evaluation engein:

    EvalEngine.setRecursionLimit(256);
    EvalEngine.setIterationLimit(256);
    
  2. Log in to comment