I have written a program in python to plot the Mandelbrot set using pygame, multithreading and numba. Unfortunately, I can't zoom more than 1e-15 because of the limit of floats precision. When I do it become all pixelated. I heard about the decimal library that is more precise but it is not supported by numba.
Is there a way to represent very precise float simply enough to works with numba?
Edit : Forgot to mention it but I'm using double and tried using numpy longdouble but it doesn't seem to change anything.