(ce: ComputeEngine, label: string)
| 219 | ]; |
| 220 | |
| 221 | // The proposition actually asserted (chained assume needs its own source). |
| 222 | const propositionFor = (ce: ComputeEngine, label: string): any => { |
| 223 | if (label.startsWith('0 < x < 1')) return ce.parse('0 < x < 1'); |
| 224 | return null; |
| 225 | }; |
| 226 | |
| 227 | for (const [label, build] of cases) { |