pub struct PlasticityNode {
pub incoming_weight_sum: FiniteF32,
pub ceiling: FiniteF32,
}Fields§
§incoming_weight_sum: FiniteF32Sum of incoming edge weights (for homeostatic normalisation).
ceiling: FiniteF32Homeostatic ceiling for this node. Default: HOMEOSTATIC_CEILING = 5.0 from plasticity.py
Trait Implementations§
Source§impl Clone for PlasticityNode
impl Clone for PlasticityNode
Source§fn clone(&self) -> PlasticityNode
fn clone(&self) -> PlasticityNode
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 PlasticityNode
impl Debug for PlasticityNode
Source§impl Default for PlasticityNode
impl Default for PlasticityNode
Source§fn default() -> PlasticityNode
fn default() -> PlasticityNode
Returns the “default value” for a type. Read more
impl Copy for PlasticityNode
Auto Trait Implementations§
impl Freeze for PlasticityNode
impl RefUnwindSafe for PlasticityNode
impl Send for PlasticityNode
impl Sync for PlasticityNode
impl Unpin for PlasticityNode
impl UnsafeUnpin for PlasticityNode
impl UnwindSafe for PlasticityNode
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