Skip to content

Commit

Permalink
Tweaked the TIA bailout again
Browse files Browse the repository at this point in the history
  • Loading branch information
dbyrne committed Mar 29, 2010
1 parent 3e22ad9 commit f64a554
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions native-src/FractalMath/FractalMath.c
Expand Up @@ -337,8 +337,8 @@ JNIEXPORT jintArray JNICALL Java_byrne_fractal_NativeLib_getFractalRow
}
}
} else if (alg == 7) {
if (xsq + ysq > 250000) {
mu = (log(log(500)) - log(log(sqrt(xsq + ysq))))/log(power) + 1;
if (xsq + ysq > 40000) {
mu = (log(log(200)) - log(log(sqrt(xsq + ysq))))/log(power) + 1;
lessThanMax = 1;
break;
}
Expand Down

0 comments on commit f64a554

Please sign in to comment.