| # | Line 223 | Line 223 | build_rbfrep(RBFVAL **arp, int *np, int x0, int x1, in | |
|---|---|---|
| 223 | if (!nleaves) /* nothing but branches? */ | |
| 224 | return(nadded); | |
| 225 | /* combine 4 leaves into 1? */ | |
| 226 | < | if (nleaves == 4 && x1-x0 < MAX_RAD && smooth_region(x0, x1, y0, y1)) |
| 226 | > | if ((nleaves == 4) & (x1-x0 <= MAX_RAD) && |
| 227 | > | smooth_region(x0, x1, y0, y1)) |
| 228 | return(0); | |
| 229 | /* need more array space? */ | |
| 230 | if ((*np+nleaves-1)>>RBFALLOCB != (*np-1)>>RBFALLOCB) { | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |