ouroboros-pasterski-research-program / tests /test_sabrina_ambidextrous_integer_prefactor_lattice.py
cjc0013's picture
Publish private Ouroboros Pasterski research program for review
db6c8f1 verified
Raw
History Blame Contribute Delete
546 Bytes
from __future__ import annotations
from ouroboros_replay.kernels.run_sabrina_ambidextrous_integer_prefactor_lattice import build_exact_result
def test_sabrina_ambidextrous_integer_prefactor_lattice_recomputes_with_all_exact_checks_passing() -> None:
result = build_exact_result()
checks = result.get("exact_checks")
assert isinstance(checks, dict) and checks
assert all(value is not False for value in checks.values())
assert isinstance(result.get("status"), str) and result["status"]
assert len(result) >= 5