| # | Line 42 | Line 42 | const double sph_xoffset = 15.; | |
|---|---|---|
| 42 | ||
| 43 | #define FEQ(a,b) ((a)-(b) <= 1e-7 && (b)-(a) <= 1e-7) | |
| 44 | ||
| 45 | < | #define set_minlog() (min_log10 = log10(overall_min + 1e-5) - .1) |
| 45 | > | #define set_minlog() overall_min = (overall_min < 1e-5) ? 1e-5 : overall_min; \ |
| 46 | > | min_log10 = log10(overall_min) - .1 |
| 47 | ||
| 48 | char *progname; | |
| 49 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |