pub struct IsStable {
pub margin: f64,
pub min_samples: u64,
pub horizon: u64,
pub register: Mutex<SettleState>,
/* private fields */
}Expand description
Condition a per-cycle objective signal into a settled register and a steady-state signal.
Signature: is_stable(objective_value: f64, margin: f64, min_samples: u64, horizon: u64) -> (stable_value: f64, stable: u64)
Each cycle pushes objective_value onto a bounded ring of the
most recent horizon samples and reports two outputs:
stable_value— the median of the ring, a robust central-tendency estimate of the level the phase is currently producing. This is the register the phase executor reads as the optimizer objective after completion. It is populated from the first sample and, being a median over the window, is resistant to a single trailing empty-window outlier.stable—1when the signal has reached steady state: the ring holds at leastmin_samplessamples and the sample standard deviation is withinmargin · max(|median|, 1)(a relative band with an absolute floor so a level near zero still settles). Otherwise0. The executor reads this to decide when settling is complete and the phase may stop.
Declared Nondeterministic: the output depends on the sample
history accumulated across calls, not on the current input
alone. The eval-spanning ring is the load-bearing aspect.
Fields§
§margin: f64The margin argument, as given at construction.
min_samples: u64The min_samples argument, as given at construction.
horizon: u64The horizon argument, as given at construction.
register: Mutex<SettleState>The register value, computed once at construction.
Implementations§
Trait Implementations§
Source§impl PolydatNode for IsStable
impl PolydatNode for IsStable
Source§fn compiled_slot(&self, wire_types: &[PortType]) -> Option<CompiledSlotKit>
fn compiled_slot(&self, wire_types: &[PortType]) -> Option<CompiledSlotKit>
Return a slot-compiled closure for nodes with typed-slice
ports (§8.4 layer 3): slice inputs read
(ptr, len) slot
pairs; vector outputs write into kernel-owned scratch.
Checked by the compiled-kernel builders AFTER
Self::compiled_u64 — pure-scalar nodes never need it.
Default None: the node stays on typed eval.Source§fn purity(&self) -> Purity
fn purity(&self) -> Purity
Declare this node’s purity status per the
runtime_model.md’s D2 axiom. Default:
Purity::Pure. Override to declare an observable
side channel (Purity::SideChannel) or
eval-call-spanning state (Purity::Nondeterministic). Read moreSource§fn scratch_layout(&self) -> Vec<ScratchElem>
fn scratch_layout(&self) -> Vec<ScratchElem>
The scratch entries a state owns for this node’s evaluation
(axiom S3), one per entry in the order the node expects them
in
Self::eval_in. Empty for a node that evaluates over
Values alone, which is every node but a native cone.Source§fn eval_in(
&self,
scratch: &mut [ScratchBuf],
inputs: &[Value],
outputs: &mut [Value],
)
fn eval_in( &self, scratch: &mut [ScratchBuf], inputs: &[Value], outputs: &mut [Value], )
Self::eval with the node’s scratch, which the evaluating
state owns and hands in: storage belongs to the state, never to
the node, which is shared by every state of the program.Source§fn commutativity(&self) -> Commutativity
fn commutativity(&self) -> Commutativity
Declare which inputs are interchangeable for this node. Read more
Source§fn accepts_none_inputs(&self) -> bool
fn accepts_none_inputs(&self) -> bool
True iff this node should receive
Value::None inputs
directly rather than have the kernel propagate None through
it. Default: false — most nodes follow SRD-74 Rule 1
(None in → None out, no eval invocation). Read moreSource§fn compiled_u64(&self) -> Option<Box<dyn Fn(&[u64], &mut [u64]) + Send + Sync>>
fn compiled_u64(&self) -> Option<Box<dyn Fn(&[u64], &mut [u64]) + Send + Sync>>
Return a compiled u64-only evaluation closure, if this node
operates entirely in u64 space. Read more
Source§fn jit_constants(&self) -> Vec<u64>
fn jit_constants(&self) -> Vec<u64>
Return assembly-time constants for JIT compilation. Read more
Source§fn simd_variant(&self) -> Option<SimdVariant>
fn simd_variant(&self) -> Option<SimdVariant>
Explicit SIMD-native implementation of this scalar node, if one has
been registered with a semantic contract. Read more
Source§fn fusion_subgraph(&self) -> Option<FusionSubgraph<'_>>
fn fusion_subgraph(&self) -> Option<FusionSubgraph<'_>>
A synthetic fusion node’s view of the subgraph it stands in
for (SRD-105 cone extraction). Program-identity hashing
(
PolydatProgram::canonical_hash) walks THROUGH fusion
nodes into this subgraph, so identity is invariant to the
engine mix: jit=off and jit=auto compiles of the same
source hash identically, and resume-skip matching survives
mode changes. Default None: ordinary nodes hash as
themselves.Auto Trait Implementations§
impl !Freeze for IsStable
impl RefUnwindSafe for IsStable
impl Send for IsStable
impl Sync for IsStable
impl Unpin for IsStable
impl UnsafeUnpin for IsStable
impl UnwindSafe for IsStable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more