(g: ReturnType<typeof ce.expr>, s: string, vars: string[])
| 65 | const gcd = (a: string, b: string, vars: string[]) => |
| 66 | multivariateGCD(ce, expand(a), expand(b), vars); |
| 67 | const divides = (g: ReturnType<typeof ce.expr>, s: string, vars: string[]) => |
| 68 | MPoly.tryDivide(P(s, vars), mpolyFromBoxed(ce, g, vars)!) !== null; |
| 69 | |
| 70 | test.each([ |
| 71 | ['(x+y)(x-y)', '(x+y)(x+2y)', ['x', 'y'], 'x+y'], |
no test coverage detected