[][src]Enum varisat::checker::ProofTranscriptStep

pub enum ProofTranscriptStep<'a> {
    WitnessVar {
        var: Var,
    },
    SampleVar {
        var: Var,
    },
    HideVar {
        var: Var,
    },
    ObserveInternalVar {
        var: Var,
    },
    AddClause {
        clause: &'a [Lit],
    },
    Unsat,
    Model {
        assignment: &'a [Lit],
    },
    Assume {
        assumptions: &'a [Lit],
    },
    FailedAssumptions {
        failed_core: &'a [Lit],
    },
}

Step of a proof transcript.

The proof transcript contains the solver queries and results that correspond to a checked proof.

The transcript uses the same variable numbering as used for solver calls.

Variants

WitnessVar

Fields of WitnessVar

var: Var
SampleVar

Fields of SampleVar

var: Var
HideVar

Fields of HideVar

var: Var
ObserveInternalVar

Fields of ObserveInternalVar

var: Var
AddClause

Fields of AddClause

clause: &'a [Lit]
UnsatModel

Fields of Model

assignment: &'a [Lit]
Assume

Fields of Assume

assumptions: &'a [Lit]
FailedAssumptions

Fields of FailedAssumptions

failed_core: &'a [Lit]

Trait Implementations

impl<'a> Debug for ProofTranscriptStep<'a>[src]

Auto Trait Implementations

impl<'a> Send for ProofTranscriptStep<'a>

impl<'a> Sync for ProofTranscriptStep<'a>

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