(e: Expression)
| 73 | import { simplifyTrig } from '../symbolic/simplify-trig.js'; |
| 74 | import { toTimesPower, recanonicalize } from './normal-form.js'; |
| 75 | |
| 76 | const MAX_DEPTH = 40; |
| 77 | |
| 78 | // RUBI_DEBUG_FLOAT: report the first rule whose result contains an inexact |
| 79 | // machine-float literal while its integrand was float-free (i.e. the rule |
| 80 | // that INTRODUCES the float, not one that propagates it). |
| 81 | const DEBUG_FLOAT = process.env.RUBI_DEBUG_FLOAT !== undefined; |