diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-07-22 20:34:00 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-07-22 20:34:00 -0500 |
| commit | eb660b95ea39af7b313aa73b18a8cd4ae3231bf3 (patch) | |
| tree | 9e31735c8b7e9afbbfd3c20ce67b461a00a709ca | |
| parent | 0608e914a0b4a2afb7eeee57567193117c63c2ae (diff) | |
audit: conditionally recheck future gates
| -rwxr-xr-x | experiments/finalize_accept.sh | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/experiments/finalize_accept.sh b/experiments/finalize_accept.sh index d2aa4cc..e13df52 100755 --- a/experiments/finalize_accept.sh +++ b/experiments/finalize_accept.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash -# Strict accept-bar finalizer. It intentionally fails until the two frozen -# native author-code runs are complete, imported, and independently audited. +# Strict mechanical finalizer for all committed evidence. Future immutable +# gates are re-audited only after their gate files exist; this never opens an +# incomplete panel or generates a task endpoint. set -eu cd "$(dirname "$0")/.." @@ -22,6 +23,18 @@ experiments/finalize_claims.sh experiments/analyze_kp_dynamic_projection_short.py >/dev/null /home/yurenh2/miniconda3/envs/ep_pascal/bin/python3 \ experiments/analyze_kp_dynamic_projection_full.py >/dev/null +if [ -f results/kp_dynamic_projection_confirmation_gate.json ]; then + /home/yurenh2/miniconda3/envs/ep_pascal/bin/python3 \ + experiments/analyze_kp_dynamic_projection_confirmation.py >/dev/null +fi +if [ -f results/bci_td_dev_gate.json ]; then + /home/yurenh2/miniconda3/envs/ep_pascal/bin/python3 \ + experiments/analyze_bci_td_development.py >/dev/null +fi +if [ -f results/bci_td_confirmation_gate.json ]; then + /home/yurenh2/miniconda3/envs/ep_pascal/bin/python3 \ + experiments/analyze_bci_td_confirmation.py >/dev/null +fi /home/yurenh2/miniconda3/bin/python \ experiments/plot_tracking_failure.py >/dev/null /home/yurenh2/miniconda3/bin/python \ |
