I'm trying to optimize an elliptic curve factoring method by running it in parallel. There is a recursive step which required me to set the recursion limit higher than 256, however when I try and run it in parallel apparently the $RecursionLimit on each different kernel isn't changed.
Here's part of the output:
In[76]:= ParallelECFactor[2418059292539721278076064468260051655561,1000,40]
(kernel 4) $RecursionLimit::reclim: Recursion depth of 256 exceeded.
(kernel 3) $RecursionLimit::reclim: Recursion depth of 256 exceeded.
(kernel 2) $RecursionLimit::reclim: Recursion depth of 256 exceeded.
(kernel 1) $RecursionLimit::reclim: Recursion depth of 256 exceeded.
(* and many more *)
