Create config optimized for kernel verification
()
| 115 | |
| 116 | /// Create config optimized for kernel verification |
| 117 | pub fn kernel() -> Self { |
| 118 | Self { |
| 119 | max_steps: 50_000, |
| 120 | enable_cache: true, |
| 121 | cache_size: 20_000, |
| 122 | delta_reduction: true, |
| 123 | zeta_reduction: true, |
| 124 | iota_reduction: true, |
| 125 | track_stats: false, |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | /// Create minimal config for testing |
| 130 | pub fn minimal() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected