mirror of
https://gitea.ingwaz.work/Ingwaz/openbrain-mcp.git
synced 2026-06-15 22:07:08 +00:00
16 lines
591 B
Rust
16 lines
591 B
Rust
//! Truth scoring engine — PLN deduction, ECAN attention, and memory scoring.
|
|
//!
|
|
//! This module implements neuro-symbolic reasoning for evaluating the
|
|
//! truthfulness of stored memories. Based on the Bushidai Truth Simulator
|
|
//! by Thijs Smits (TS87).
|
|
//!
|
|
//! ## Components
|
|
//!
|
|
//! - **PLN** (Probabilistic Logic Networks): Deduction rules for computing
|
|
//! truth values from evidence chains.
|
|
//! - **ECAN** (Economic Attention Network): Manages short-term and long-term
|
|
//! importance of memories, enabling natural prioritization of verified knowledge.
|
|
|
|
pub mod ecan;
|
|
pub mod pln;
|