Skip to main content

ThoughtGraphState

Struct ThoughtGraphState 

Source
pub struct ThoughtGraphState {
    pub nodes: Vec<ThoughtNode>,
    pub edges: HashMap<(u64, u64), ThoughtEdge>,
    pub patterns: Vec<ThoughtPattern>,
    pub current_session_id: u32,
    /* private fields */
}

Fields§

§nodes: Vec<ThoughtNode>§edges: HashMap<(u64, u64), ThoughtEdge>§patterns: Vec<ThoughtPattern>§current_session_id: u32

Implementations§

Source§

impl ThoughtGraphState

Source

pub fn load_or_init(output_dir: &Path) -> Self

Source

pub fn record_recall( &mut self, query_hash: u64, results: &[(u32, f32)], dominant_layer: u8, ) -> u32

Record a recall event. Returns session_id.

Source

pub fn detect_patterns(&mut self)

Detect and crystallize patterns from recent session history. Uses sliding-window n-gram (lengths 2..=5) on the current session’s recalls.

Source

pub fn pattern_boost(&self, current_query_hash: u64) -> Vec<(u32, f32)>

Compute pattern boost for a new query. Checks if recent session recalls + this query form a known pattern prefix/match. Returns block indices with boost scores.

Source

pub fn update_pattern_blocks(&mut self, query_hash: u64, result_blocks: &[u32])

Update pattern result blocks with the actual results from a recall. Called after record_recall when a pattern was matched.

Source

pub fn save(&self, output_dir: &Path) -> Result<(), String>

Save to binary files.

Source

pub fn top_patterns(&self, n: usize) -> Vec<&ThoughtPattern>

Top patterns by strength * frequency.

Source

pub fn crystallized_count(&self) -> usize

Crystallized patterns (frequency >= PATTERN_MIN_FREQ).

Source

pub fn current_path(&self) -> Vec<&ThoughtNode>

Get current session’s recall path.

Source

pub fn recent_sessions(&self, n: usize) -> Vec<Vec<&ThoughtNode>>

Get recent sessions (unique session IDs, most recent first).

Source

pub fn export_patterns(&self) -> Vec<&ThoughtPattern>

Export crystallized patterns for cross-instance exchange.

Source

pub fn import_patterns(&mut self, patterns: &[ThoughtPattern], trust: f32)

Import patterns from a remote instance with trust weighting.

Source

pub fn stats(&self) -> ThoughtGraphStats

Stats summary.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.