| 1 | package agent |
| 2 | |
| 3 | // ebmState is retained only to read and reproduce historical experiment fork |
| 4 | // bundles. The EBM and reasoning-governor enforcement paths are retired. |
| 5 | type ebmState struct { |
| 6 | fired bool |
| 7 | captureArmed bool |
| 8 | captured bool |
| 9 | captureRound int |
| 10 | } |
| 11 |