(res: any)
| 411 | for (let i = 0; i < a.length; i++) if (a[i] != null && b[i] != null && b[i] !== 0) ratios.push(a[i] / b[i]); |
| 412 | return ratios.length >= 2 && ratios.every((r) => Math.abs(r - ratios[0]) <= 1e-6 * (1 + Math.abs(ratios[0]))); |
| 413 | }; |
| 414 | const rows = cases.map((c) => { |
| 415 | const ref = refSamples(c); |
| 416 | const ceRes = runOn(ce, c); |