mirror of
https://github.com/allaunthefox/SilverSight.git
synced 2026-07-30 17:16:16 +00:00
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
13 lines
471 B
Python
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())
|