blah blah blah is here! blah blah » Close

0
votes
1 answers

Optimized algorithm runs slower than original

I'm writing a fractal explorer app. The original mandelbrot test func is: [code] public static Complex MandelbrotTest(Complex C) { int iter = 0; double CI = C.Imag; double tr; ...

Feedback