pub struct ProgressStatus {
    pub conflicts: i32,
    pub dec_vars: i32,
    pub n_clauses: u32,
    pub n_clause_lits: i32,
    pub max_learnt: i32,
    pub n_learnt: u32,
    pub n_learnt_lits: f64,
    pub progress_estimate: f64,
}
Expand description

Progress indicator from the SAT solver.

This is given to Callbacks regularly so it can log it somehow.

Fields

conflicts: i32dec_vars: i32n_clauses: u32n_clause_lits: i32max_learnt: i32n_learnt: u32n_learnt_lits: f64progress_estimate: f64

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.