(n: number | string)
| 16 | |
| 17 | // The Fungrim 7b27cd shape: ["Set", k, ["Element", k, domain, cond?]] |
| 18 | function totientSet(n: number | string) { |
| 19 | return [ |
| 20 | 'Set', |
| 21 | 'k', |
| 22 | ['Element', 'k', ['Range', 1, n], ['Equal', ['GCD', n, 'k'], 1]], |
| 23 | ]; |
| 24 | } |
| 25 | |
| 26 | describe('Disambiguation: literal sets are unaffected', () => { |
| 27 | const ce = freshEngine(); |
no outgoing calls
no test coverage detected