Expand description
Cyber-Cinetics: typed feedback controller encoding ∂(→(ν, ς, ρ))
Maps the primitive composition ∂(→(ν, ς, ρ)) to a Rust type system:
- ν (frequency) — oscillation rate of the control loop
- ς (state) — current system snapshot
- ρ (recursion) — self-referential observation depth
- → (causality) — cause-effect chain linking input to output
- ∂ (boundary) — the controller envelope constraining all above
Primary use: hook-binary feedback linking where hooks observe system state and binaries act on it, creating a closed loop.
Structs§
- Arrow
- → — Causal chain from input to output.
- Binding
Registry - Registry of hook-binary bindings governed by a controller.
- Causal
Link - A single cause-effect link in the causal chain.
- Controller
- ∂(→(ν, ς, ρ)) — The feedback controller.
- Hook
Binding - A hook-binary pair in the feedback loop.
- Nu
- ν — Frequency of the control loop (Hz or iterations/sec).
- Rho
- ρ — Recursion depth for self-referential observation.
- Sigma
- ς — State snapshot of the controlled system.
Enums§
- Verdict
- Controller verdict after one tick of the feedback loop.