[][src]Struct chalk_engine::slg::TruncatingInferenceTable

pub struct TruncatingInferenceTable<I: Interner> { /* fields omitted */ }

Trait Implementations

impl<I: Clone + Interner> Clone for TruncatingInferenceTable<I>[src]

impl<I: Interner> ResolventOps<I> for TruncatingInferenceTable<I>[src]

fn resolvent_clause(
    &mut self,
    interner: &I,
    environment: &Environment<I>,
    goal: &DomainGoal<I>,
    subst: &Substitution<I>,
    clause: &ProgramClause<I>
) -> Fallible<ExClause<I>>
[src]

Applies the SLG resolvent algorithm to incorporate a program clause into the main X-clause, producing a new X-clause that must be solved.

Parameters

  • goal is the goal G that we are trying to solve
  • clause is the program clause that may be useful to that end

impl<I: Interner> TruncateOps<I> for TruncatingInferenceTable<I>[src]

impl<I: Interner> UnificationOps<I> for TruncatingInferenceTable<I>[src]

Auto Trait Implementations

impl<I> RefUnwindSafe for TruncatingInferenceTable<I> where
    I: RefUnwindSafe,
    <I as Interner>::InternedGenericArg: RefUnwindSafe

impl<I> Send for TruncatingInferenceTable<I> where
    I: Send,
    <I as Interner>::InternedGenericArg: Send

impl<I> Sync for TruncatingInferenceTable<I> where
    I: Sync,
    <I as Interner>::InternedGenericArg: Sync

impl<I> Unpin for TruncatingInferenceTable<I> where
    I: Unpin,
    <I as Interner>::InternedGenericArg: Unpin

impl<I> UnwindSafe for TruncatingInferenceTable<I> where
    I: UnwindSafe,
    <I as Interner>::InternedGenericArg: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Cast for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.