Fix infinite recursion in negation
Do negation by multiplying by -1 rather than finding the negative of the second argument recursively, which overflows the stack.
Please register or sign in to comment
Do negation by multiplying by -1 rather than finding the negative of the second argument recursively, which overflows the stack.