pub struct GpuSolverProductionLifecycleStep<'a> {
pub cnf: &'a GpuCnf,
pub branch_var_limit: &'a TrackedCudaSlice<u32>,
pub expectation: GpuSolverProductionExpectation,
}Expand description
One accepted solver lifecycle step backed by existing GPU CDCL inputs.
Fields§
§cnf: &'a GpuCnfDevice-resident CNF for this step, including any assumption clauses.
branch_var_limit: &'a TrackedCudaSlice<u32>Device-resident branch limit passed to the GPU CDCL solver.
expectation: GpuSolverProductionExpectationExpected SAT/UNSAT status for the step.
Trait Implementations§
Source§impl<'a> Clone for GpuSolverProductionLifecycleStep<'a>
impl<'a> Clone for GpuSolverProductionLifecycleStep<'a>
Source§fn clone(&self) -> GpuSolverProductionLifecycleStep<'a>
fn clone(&self) -> GpuSolverProductionLifecycleStep<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for GpuSolverProductionLifecycleStep<'a>
Auto Trait Implementations§
impl<'a> Freeze for GpuSolverProductionLifecycleStep<'a>
impl<'a> RefUnwindSafe for GpuSolverProductionLifecycleStep<'a>
impl<'a> Send for GpuSolverProductionLifecycleStep<'a>
impl<'a> Sync for GpuSolverProductionLifecycleStep<'a>
impl<'a> Unpin for GpuSolverProductionLifecycleStep<'a>
impl<'a> UnsafeUnpin for GpuSolverProductionLifecycleStep<'a>
impl<'a> UnwindSafe for GpuSolverProductionLifecycleStep<'a>
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