pub struct Solved {
pub answer: Answer,
pub via: Route,
pub proof: Vec<ProofStep>,
pub conflicts: u64,
}Expand description
A decided instance.
Fields§
§answer: Answer§via: Route§proof: Vec<ProofStep>UNSAT certificate as a proof stream where one exists (RUP for the CDCL route); empty for the polynomial specialists, which certify internally.
conflicts: u64CDCL conflicts spent (0 whenever a specialist collapsed the instance without search).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Solved
impl RefUnwindSafe for Solved
impl Send for Solved
impl Sync for Solved
impl Unpin for Solved
impl UnsafeUnpin for Solved
impl UnwindSafe for Solved
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