(e: Expression)
| 462 | if (leafCount(e) > SIMPLIFY_LEAF_CAP) return e; |
| 463 | const key = activeCaches ? e.toString() : ''; |
| 464 | const cached = activeCaches?.simplify.get(key); |
| 465 | if (cached !== undefined) return cached; |
| 466 | const t0 = Date.now(); |
| 467 | let r: Expression; |
| 468 | try { |
| 469 | r = e.simplify(); |
no test coverage detected