[][src]Struct varisat_checker::rup::RupCheck

pub struct RupCheck {
    trail: Vec<(Lit, Option<UnitClause>)>,
    trace: Vec<TraceItem>,
    trace_edges: Vec<LitIdx>,
    pub trace_ids: Vec<u64>,
}

Fields

trail: Vec<(Lit, Option<UnitClause>)>

Stores overwritten values in unit_clauses to undo assignments.

trace: Vec<TraceItem>

Involved clauses during the last check.

trace_edges: Vec<LitIdx>

Edges of the trace implication graph.

trace_ids: Vec<u64>

Just the ids of trace.

Trait Implementations

impl Default for RupCheck[src]

Auto Trait Implementations

impl Send for RupCheck

impl Sync for RupCheck

Blanket Implementations

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

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

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.

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

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

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

impl<Reference, Outer, OuterFieldType, Inner> HasPart<Nested<Outer, Inner>> for Reference where
    Inner: Part,
    Outer: Part<PartType = Field<OuterFieldType>>,
    OuterFieldType: HasPart<Inner, RawTarget = OuterFieldType> + PartialRefTarget + ?Sized,
    Reference: HasPart<Outer> + ?Sized