Skip to main content

TruthValue

Struct TruthValue 

Source
pub struct TruthValue {
    pub strength: f64,
    pub confidence: f64,
}
Expand description

PLN indefinite truth value: (strength, confidence).

  • strength — probability estimate ∈ [0, 1]
  • confidence — certainty in the strength estimate ∈ [0, 1] (0 = no information, 1 = complete certainty)

Fields§

§strength: f64

Probability estimate.

§confidence: f64

Confidence in the strength estimate.

Implementations§

Source§

impl TruthValue

Source

pub fn new(strength: f64, confidence: f64) -> Self

Create a new truth value, clamping both components to [0, 1].

Source

pub fn unknown() -> Self

Return the unknown truth value (strength = 0.5, confidence = 0).

Source

pub fn certain_true() -> Self

Return the true truth value (strength = 1, confidence = 1).

Source

pub fn certain_false() -> Self

Return the false truth value (strength = 0, confidence = 1).

Source

pub fn count(self) -> f64

Effective sample count n = c / (1 − c). Returns f64::INFINITY when confidence == 1.

Source

pub fn negate(self) -> Self

PLN negation: NOT A.

Source

pub fn conjunction(self, other: Self) -> Self

PLN conjunction: A AND B.

Source

pub fn disjunction(self, other: Self) -> Self

PLN disjunction: A OR B.

Source

pub fn revise(self, other: Self) -> Self

PLN revision: merge two independent estimates of the same proposition.

Uses weighted average by effective sample count:

s_rev = (s1 * n1 + s2 * n2) / (n1 + n2)
c_rev = (n1 + n2) / (n1 + n2 + 1)
Source

pub fn deduction(ab: Self, bc: Self, b: Self, c: Self) -> Self

PLN deduction: given A→B and B→C, infer A→C.

s_AC = s_AB * s_BC + (1 − s_AB) * (s_C − s_B * s_BC) / (1 − s_B)
c_AC = c_AB * c_BC * min(1, c_AB * c_BC)
Source

pub fn induction(ab: Self, ac: Self) -> Self

PLN induction: given A→B and A→C, infer B→C.

Simplified formula:

s_BC = s_AC / max(s_AB, 0.01), clamped [0, 1]
c_BC = c_AB * c_AC * min(1, c_AB * c_AC)
Source

pub fn abduction(ba: Self, ca: Self) -> Self

PLN abduction: given B→A and C→A, infer B→C.

Dual of induction (swap roles of B and C):

s_BC = s_BA * s_CA / max(s_A, 0.01), clamped [0, 1]  (simplified)
c_BC = c_BA * c_CA * min(1, c_BA * c_CA)
Source

pub fn modus_ponens(a: Self, ab: Self) -> Self

PLN Modus Ponens: given A (premise) and A→B (implication), infer B.

s_B  = s_A * s_AB + (1 − s_A) * (1 − s_AB) * 0.5   (mixture)
c_B  = c_A * c_AB

Trait Implementations§

Source§

impl Clone for TruthValue

Source§

fn clone(&self) -> TruthValue

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for TruthValue

Source§

impl Debug for TruthValue

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for TruthValue

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Display for TruthValue

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for TruthValue

Source§

fn eq(&self, other: &TruthValue) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for TruthValue

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more