Running ./verify from a fresh clone fails before the proof pipeline runs because the wrapper looks under v1/data/proof and v1/src, while the files in the current repo are under archive/v1/....
Observed from a fresh clone:
FAIL: Reference signal not found at .../RuView/v1/data/proof/sample_csi_data.json
FAIL: verify.py not found at .../RuView/v1/data/proof/verify.py
Local minimal fix that allowed the wrapper to reach the proof script:
-PROOF_DIR="${SCRIPT_DIR}/v1/data/proof"
+PROOF_DIR="${SCRIPT_DIR}/archive/v1/data/proof"
VERIFY_PY="${PROOF_DIR}/verify.py"
-V1_SRC="${SCRIPT_DIR}/v1/src"
+V1_SRC="${SCRIPT_DIR}/archive/v1/src"
Environment: macOS, Python 3.9.6.
Running
./verifyfrom a fresh clone fails before the proof pipeline runs because the wrapper looks underv1/data/proofandv1/src, while the files in the current repo are underarchive/v1/....Observed from a fresh clone:
Local minimal fix that allowed the wrapper to reach the proof script:
Environment: macOS, Python 3.9.6.