Packet — task-breakdown.md typo edits
E1 — L584 numeric underscore
old_string
- [ ] Timeout: `MAX_INTEGER_OPS=10000` — abort with `RuleBudgetExceeded("integer_ops")`
new_string
- [ ] Timeout: `MAX_INTEGER_OPS=10_000` — abort with `RuleBudgetExceeded("integer_ops")`
E2 — L797 function name
old_string
- [ ] Formula: `new_score = score - bps_apply(score, decay_rate)` per inactive epoch
new_string
- [ ] Formula: `new_score = score - apply_bps(score, decay_rate)` per inactive epoch