pub struct MorphConfig {
pub grid_size: usize,
pub growth_threshold: f64,
pub prune_threshold: f64,
pub prune_weight: f64,
pub target_connectivity: f64,
pub stability_epsilon: f64,
pub diffusion_sigma: f64,
pub max_steps: usize,
pub dt: f64,
}Expand description
Configuration for morphogenetic development
Fields§
§grid_size: usizeGrid size (neurons arranged spatially)
growth_threshold: f64Growth activation threshold
prune_threshold: f64Prune activation threshold
prune_weight: f64Minimum edge weight to keep
target_connectivity: f64Target connectivity for maturity
stability_epsilon: f64Stability epsilon for maturity detection
diffusion_sigma: f64Diffusion kernel sigma
max_steps: usizeMaximum development steps
dt: f64Time step
Trait Implementations§
Source§impl Clone for MorphConfig
impl Clone for MorphConfig
Source§fn clone(&self) -> MorphConfig
fn clone(&self) -> MorphConfig
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 MorphConfig
impl Debug for MorphConfig
Auto Trait Implementations§
impl Freeze for MorphConfig
impl RefUnwindSafe for MorphConfig
impl Send for MorphConfig
impl Sync for MorphConfig
impl Unpin for MorphConfig
impl UnwindSafe for MorphConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more