pub struct TemporalConsciousness { /* private fields */ }Expand description
Main temporal consciousness system
Implementations§
Source§impl TemporalConsciousness
impl TemporalConsciousness
Sourcepub fn new(config: ConsciousnessConfig) -> Result<Self>
pub fn new(config: ConsciousnessConfig) -> Result<Self>
Create a new temporal consciousness system
Sourcepub fn evolve_consciousness(
&mut self,
iterations: usize,
) -> Result<ConsciousnessEvolutionResult>
pub fn evolve_consciousness( &mut self, iterations: usize, ) -> Result<ConsciousnessEvolutionResult>
Evolve consciousness through temporal dynamics
Sourcepub fn calculate_phi(
&mut self,
num_elements: usize,
num_connections: usize,
coupling_strength: f64,
) -> f64
pub fn calculate_phi( &mut self, num_elements: usize, num_connections: usize, coupling_strength: f64, ) -> f64
Calculate Φ (integrated information)
Sourcepub fn current_state(&self) -> &ConsciousnessState
pub fn current_state(&self) -> &ConsciousnessState
Get current consciousness state
Sourcepub fn metrics(&self) -> &ConsciousnessMetrics
pub fn metrics(&self) -> &ConsciousnessMetrics
Get consciousness metrics
Sourcepub fn verify_consciousness(&self) -> ConsciousnessVerification
pub fn verify_consciousness(&self) -> ConsciousnessVerification
Verify consciousness using comprehensive tests
Sourcepub fn evolution_history(&self) -> &[EvolutionStep]
pub fn evolution_history(&self) -> &[EvolutionStep]
Get evolution history
Sourcepub fn emergence_patterns(&self) -> &[EmergencePattern]
pub fn emergence_patterns(&self) -> &[EmergencePattern]
Get emergence patterns
Sourcepub fn self_modification_log(&self) -> &[SelfModificationEvent]
pub fn self_modification_log(&self) -> &[SelfModificationEvent]
Get self-modification log
Sourcepub fn evolve(&mut self) -> Result<ConsciousnessEvolutionResult>
pub fn evolve(&mut self) -> Result<ConsciousnessEvolutionResult>
Convenience method that calls evolve_consciousness with default iterations
Sourcepub fn get_temporal_patterns(&self) -> Vec<TemporalPattern>
pub fn get_temporal_patterns(&self) -> Vec<TemporalPattern>
Convenience method that returns temporal patterns
Auto Trait Implementations§
impl Freeze for TemporalConsciousness
impl !RefUnwindSafe for TemporalConsciousness
impl Send for TemporalConsciousness
impl Sync for TemporalConsciousness
impl Unpin for TemporalConsciousness
impl !UnwindSafe for TemporalConsciousness
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> 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.