| 58 | } |
| 59 | |
| 60 | interface InputFeature { |
| 61 | f: (x: number, y: number) => number; |
| 62 | label?: string; |
| 63 | } |
| 64 | |
| 65 | let INPUTS: {[name: string]: InputFeature} = { |
| 66 | "x": {f: (x, y) => x, label: "X_1"}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…