| """ | |
| Dynamic Quantum Bits (dbits) — paper-faithful engine for LinkedIn / public release. | |
| Paper: Donte Lightfoot (2025) | |
| Dynamic Quantum Bits (dbits): A Framework for Stateful Quantum Information Processing | |
| Source validation: C:\\Users\\stlta\\dbits-validation (6/6 certificates PASS) | |
| Core: | |
| Discrete PL kernel (x, m) with Jacobian J, stability box Eq.107 | |
| Lyapunov V contraction | |
| 10 gate families (§6.5) | |
| Continuous PL functional E_PL + composite V | |
| Primal-Heisenberg C_PL | |
| Multi-dbit scale N agents | |
| Continuous offset simulator (gateway dbit S-curve → D0) | |
| """ | |
| from .core import ( | |
| D0, | |
| MU, | |
| DbitParams, | |
| DbitState, | |
| cpl, | |
| continuous_offset_series, | |
| lyapunov_V, | |
| multi_dbit_step, | |
| multi_dbit_trajectory, | |
| rho_J, | |
| trajectory, | |
| ) | |
| from .gates import GATE_FAMILIES, apply_gate, list_gates | |
| from .proofs import run_all_proofs, run_proof | |
| from .spine import SPINE_NODES, list_spine, spine_summary | |
| __all__ = [ | |
| "D0", | |
| "MU", | |
| "DbitParams", | |
| "DbitState", | |
| "cpl", | |
| "continuous_offset_series", | |
| "lyapunov_V", | |
| "multi_dbit_step", | |
| "multi_dbit_trajectory", | |
| "rho_J", | |
| "trajectory", | |
| "GATE_FAMILIES", | |
| "apply_gate", | |
| "list_gates", | |
| "run_all_proofs", | |
| "run_proof", | |
| "SPINE_NODES", | |
| "list_spine", | |
| "spine_summary", | |
| ] | |