A k-term polynomial-ish LaTeX expression
(k: number)
| 53 | |
| 54 | /** A k-term polynomial-ish LaTeX expression */ |
| 55 | function longSum(k: number): string { |
| 56 | return Array.from({ length: k }, (_, i) => `${i + 1}x^{${i + 1}}`).join('+'); |
| 57 | } |
| 58 | |
| 59 | describe('LaTeX parsing scale benchmarks', () => { |
| 60 | it('tokenizer scales ~linearly with input length (non-ASCII path)', () => { |
no test coverage detected