(a: unknown, b: string)
| 11 | const expand = (s: string) => ce.expr(['Expand', ce.parse(s)]).evaluate(); |
| 12 | const P = (s: string, vars: string[]) => mpolyFromBoxed(ce, ce.parse(s), vars)!; |
| 13 | const same = (a: unknown, b: string) => |
| 14 | (a as ReturnType<typeof ce.expr>).isSame(expand(b)); |
| 15 | |
| 16 | describe('MPoly kernel', () => { |
| 17 | test('round-trips a multivariate polynomial', () => { |
no test coverage detected