(e: any[])
| 531 | expect(bn(['NextPrime', ce.number(p - 1n)])).toEqual(p); |
| 532 | }); |
| 533 | }); |
| 534 | |
| 535 | describe('IsPrime is reliable for large n (shared Miller-Rabin)', () => { |
| 536 | const ip = (n: bigint) => |
| 537 | ce.box(['IsPrime', ce.number(n)]).evaluate().toString(); |
no test coverage detected