pub enum BudgetedResult {
Sat(Vec<bool>),
Unsat,
Budget,
}Expand description
The outcome of a conflict-budgeted solve: a verdict, or budget exhaustion (with the learned clauses left available for symmetric amplification).
Variants§
Sat(Vec<bool>)
Satisfiable, with a full model.
Unsat
Unsatisfiable (proven within budget).
Budget
The conflict budget was exhausted before a verdict; Solver::learned holds the clauses
derived so far.
Trait Implementations§
Source§impl Clone for BudgetedResult
impl Clone for BudgetedResult
Source§fn clone(&self) -> BudgetedResult
fn clone(&self) -> BudgetedResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BudgetedResult
impl Debug for BudgetedResult
Source§impl PartialEq for BudgetedResult
impl PartialEq for BudgetedResult
Source§fn eq(&self, other: &BudgetedResult) -> bool
fn eq(&self, other: &BudgetedResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BudgetedResult
impl StructuralPartialEq for BudgetedResult
Auto Trait Implementations§
impl Freeze for BudgetedResult
impl RefUnwindSafe for BudgetedResult
impl Send for BudgetedResult
impl Sync for BudgetedResult
impl Unpin for BudgetedResult
impl UnsafeUnpin for BudgetedResult
impl UnwindSafe for BudgetedResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more