(x: number, y: number)
| 897 | } |
| 898 | |
| 899 | function constructInput(x: number, y: number): number[] { |
| 900 | let input: number[] = []; |
| 901 | for (let inputName in INPUTS) { |
| 902 | if (state[inputName]) { |
| 903 | input.push(INPUTS[inputName].f(x, y)); |
| 904 | } |
| 905 | } |
| 906 | return input; |
| 907 | } |
| 908 | |
| 909 | function oneStep(): void { |
| 910 | iter++; |
no outgoing calls
no test coverage detected
searching dependent graphs…