**Motivations:** - Implémenter le workflow complet de démonstration Collatz (commandes.md) - Permettre la reprise après interruption au palier D20 **Evolutions:** - Scripts 01-12 et run-full-workflow alignés sur commandes.md sections 1-10 - collatz_recover_noyau.py : recréation de noyau_post_D20 à partir du CSV candidats - Option --resume-from D20 dans collatz_k_pipeline pour reprendre sans recalculer D18-D19-F15 - Détection automatique : si candidats_D20 existe sans noyau_post_D20, récupération puis poursuite - Filtres --cible=critique et --modulo dans collatz_fusion_pipeline - ROOT par défaut = collatz_k_scripts (plus data/source vide) **Pages affectées:** - .gitignore (__pycache__, out/) - applications/collatz/collatz_k_scripts/*.py - applications/collatz/scripts/*.sh - applications/collatz/scripts/README.md
19 lines
820 B
Bash
Executable File
19 lines
820 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Section 3 from commandes.md: Intermediate paliers (D12-D14)
|
|
# Requires: collatz_k_pipeline.py, collatz_audit.py, collatz_scission.py
|
|
# Current pipeline embeds D11-D15 internally; standalone scripts not implemented.
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
OUT="${OUT:-$PROJECT_ROOT/out}"
|
|
|
|
echo "Intermediate paliers D12-D14 are computed internally by collatz_k_pipeline."
|
|
echo "Run 02-run-pipeline.sh to execute the full pipeline including these steps."
|
|
echo ""
|
|
echo "Standalone commands (from commandes.md, scripts not implemented):"
|
|
echo " collatz_k_pipeline.py --horizon=12 --palier=21 --seuil=A_min --valeur=20 ..."
|
|
echo " collatz_audit.py --input=... --output=..."
|
|
echo " collatz_scission.py --input=... --output=..."
|