pub struct ConsciousnessConfig {
pub enable_quantum: bool,
pub enable_attractors: bool,
pub enable_lipschitz: bool,
pub enable_self_modification: bool,
pub consciousness_threshold: f64,
pub phi_elements: usize,
pub coupling_strength: f64,
pub coherence_window: usize,
pub meta_learning_rate: f64,
pub novelty_sensitivity: f64,
pub max_evolution_iterations: usize,
}Expand description
Configuration for temporal consciousness system
Fields§
§enable_quantum: boolEnable quantum-classical hybrid processing
enable_attractors: boolEnable strange attractor dynamics
enable_lipschitz: boolEnable Lipschitz loop constraints
enable_self_modification: boolEnable self-modification
consciousness_threshold: f64Consciousness emergence threshold
phi_elements: usizeΦ (phi) calculation parameters
coupling_strength: f64System coupling strength
coherence_window: usizeTemporal coherence window (iterations)
meta_learning_rate: f64Meta-learning rate
novelty_sensitivity: f64Novelty detection sensitivity
max_evolution_iterations: usizeMaximum consciousness evolution iterations
Implementations§
Source§impl ConsciousnessConfig
impl ConsciousnessConfig
Sourcepub fn research_mode() -> Self
pub fn research_mode() -> Self
Create configuration for consciousness research
Sourcepub fn real_time_mode() -> Self
pub fn real_time_mode() -> Self
Create configuration for real-time applications
Trait Implementations§
Source§impl Clone for ConsciousnessConfig
impl Clone for ConsciousnessConfig
Source§fn clone(&self) -> ConsciousnessConfig
fn clone(&self) -> ConsciousnessConfig
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 ConsciousnessConfig
impl Debug for ConsciousnessConfig
Source§impl Default for ConsciousnessConfig
impl Default for ConsciousnessConfig
Source§impl<'de> Deserialize<'de> for ConsciousnessConfig
impl<'de> Deserialize<'de> for ConsciousnessConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConsciousnessConfig
impl RefUnwindSafe for ConsciousnessConfig
impl Send for ConsciousnessConfig
impl Sync for ConsciousnessConfig
impl Unpin for ConsciousnessConfig
impl UnwindSafe for ConsciousnessConfig
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> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.