( ce: ComputeEngine, u: Expression )
| 3720 | if (w.operator === 'Add' && w.ops) { |
| 3721 | return w.ops |
| 3722 | .map((t) => foeFunctionAux(ce.function('Power', [G, t]), x, st)) |
| 3723 | .reduce((a, b) => a.mul(b)); |
| 3724 | } |
| 3725 | } |
| 3726 | |
| 3727 | if (HYPERBOLIC_HEADS.has(u.operator) && linX(u.ops[0], x)) { |
| 3728 | const w = u.ops[0]; |
| 3729 | const p = safeSimplify( |
| 3730 | coeffX(w, x, 1).div(st.base!.ln().mul(coeffX(st.expon!, x, 1))) |
no test coverage detected