(boxed)
| 119 | return { timeMs: median(times), minMs: Math.min(...times), iterations }; |
| 120 | } |
| 121 | const num = (boxed) => { |
| 122 | const v = boxed.N(); |
| 123 | return typeof v.re === 'number' ? v.re : Number(v.toString()); |
| 124 | }; |
| 125 | function realRootValues(roots) { |
| 126 | const out = []; |
| 127 | for (const r of roots ?? []) { |