True if the `Solve` expression stayed unevaluated (undecided / inert).
(expr: BoxedExpression)
| 22 | |
| 23 | /** True if the `Solve` expression stayed unevaluated (undecided / inert). */ |
| 24 | function isInert(expr: BoxedExpression): boolean { |
| 25 | return expr.evaluate().operator === 'Solve'; |
| 26 | } |
| 27 | |
| 28 | /** Brute-force the integer solutions of a two-unknown equation over a box, as a |
| 29 | * lexicographically sorted array — the oracle the symbolic path must match. */ |
no test coverage detected