(...preds: ((f: Expression) => boolean)[])
| 1443 | if (rtAuxDepth > 40) { |
| 1444 | if (process.env.RUBI_DEBUG_RT) |
| 1445 | console.error(`rtAux depth cap: ${u.toString().slice(0, 120)}`); |
| 1446 | return nthRoot(u, n); |
| 1447 | } |
| 1448 | rtAuxDepth++; |
| 1449 | try { |
| 1450 | return rtAuxBody(u, n); |
| 1451 | } finally { |
| 1452 | rtAuxDepth--; |
| 1453 | } |
| 1454 | } |