advance.py
python
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago
| 1 | """``current_step`` advance rules (§K9.4).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | |
| 6 | def compute_advance( |
| 7 | template_steps: list[str], |
| 8 | verified_step: str, |
| 9 | steps_verified: dict[str, bool], |
| 10 | current_step: str, |
| 11 | ) -> str: |
| 12 | """Apply frozen advance rule using post-verify verified flags.""" |
| 13 | if verified_step not in template_steps: |
| 14 | return current_step |
| 15 | index = template_steps.index(verified_step) |
| 16 | for prior_id in template_steps[:index]: |
| 17 | if not steps_verified.get(prior_id, False): |
| 18 | return current_step |
| 19 | if index + 1 < len(template_steps): |
| 20 | return template_steps[index + 1] |
| 21 | return verified_step |
File History
1 commit
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago