pub struct DecayScore {
pub node: NodeId,
pub raw_decay: FiniteF32,
pub resurrection_multiplier: FiniteF32,
pub final_score: FiniteF32,
}Expand description
Per-node temporal decay score. Replaces: temporal_v2.py TemporalDecayResurrection.score()
Fields§
§node: NodeId§raw_decay: FiniteF32Raw decay: exp(-k * age_hours).
resurrection_multiplier: FiniteF32Resurrection multiplier (if node went dormant then active again). FM-TMP-007 fix: additive-floor + blend instead of pure multiplicative.
final_score: FiniteF32Final score: raw_decay * resurrection_mult * dormancy_depth.
Trait Implementations§
Source§impl Clone for DecayScore
impl Clone for DecayScore
Source§fn clone(&self) -> DecayScore
fn clone(&self) -> DecayScore
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DecayScore
impl Debug for DecayScore
impl Copy for DecayScore
Auto Trait Implementations§
impl Freeze for DecayScore
impl RefUnwindSafe for DecayScore
impl Send for DecayScore
impl Sync for DecayScore
impl Unpin for DecayScore
impl UnsafeUnpin for DecayScore
impl UnwindSafe for DecayScore
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