I have a program written recursively which, due to its nature, will fluctuate dramatically and thus, go over Python's limit. The shape of the program is also quite important, so I'd rather not change that.
I've come across increasing the recursion limit like so:
sys.setrecursionlimit(1500)
My question is whether or not it is advisable in my situation to increase the recursion limit like this? I've seen people advise against it for numerous reasons.