SilverSight/scripts/qc_flag/manifest.py
allaun cf6096882f chore: commit all pending work from prior sessions
Includes:
- n-dimensional generic modules (BraidStateN, MatrixN, SpectralN,
  ClassifyN, FisherRigidityN, FixedPointBridge)
- Feasible Set Theorem proofs + QUBO relaxation
- Anti-smuggle protocol (seedlock, mutation testing, cross_validate,
  qc_flag, symbol verification)
- Q16_16 bridge with quad matrix representation
- Infrastructure scripts (entry gate, determinism checks)
- Test suites for Lean modules, scripts, and QUBO pipeline
- FixedPoint migration and HachimojiN8 updates
- Documentation updates (ARCHITECTURE, GLOSSARY, DOCUMENT_SETS)
- QUBO conflict sweep and FSR validation
- GitHub Actions anti-smuggle workflow

Build: 3307 jobs, 0 errors
2026-06-30 04:54:40 -05:00

13 lines
471 B
Python

"""manifest.py — Load mutation manifest JSON for the qc-flag mutation testing suite.
Used by mutation_generator.py and mutation_runner.py to iterate over
defined mutations for each Lean module. See manifest.json for schema.
"""
import json
from pathlib import Path
from typing import Any
def load_manifest(path: Path | None = None) -> dict[str, Any]:
if path is None:
path = Path(__file__).parent / "manifest.json"
return json.loads(path.read_text())