advance.py python
21 lines 655 B
Raw
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor ⚠ breaking 1 day 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:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor 1 day ago