| 70 | } |
| 71 | |
| 72 | interface RunConfig { |
| 73 | baseUrl: string; |
| 74 | Ns: number[]; |
| 75 | Cs: number[]; |
| 76 | opsPerCell: number; |
| 77 | seed: number; |
| 78 | outDir: string; |
| 79 | autoStart: boolean; |
| 80 | } |
| 81 | |
| 82 | function parseIntList(raw: string | undefined, fallback: number[]): number[] { |
| 83 | if (!raw) return fallback; |
nothing calls this directly
no outgoing calls
no test coverage detected