pub struct GpuSolverProductionMaxSatSearchCandidate<'a> {
pub score: u64,
pub cnf: &'a GpuCnf,
pub branch_var_limit: &'a TrackedCudaSlice<u32>,
pub status: GpuSolverProductionMaxSatSearchStatus,
}Expand description
One GPU-CDCL-backed candidate in a bounded weighted MaxSAT search.
Fields§
§score: u64Candidate MaxSAT score represented when the CNF is satisfiable.
cnf: &'a GpuCnfDevice-resident CNF for this MaxSAT candidate.
branch_var_limit: &'a TrackedCudaSlice<u32>Device-resident branch limit passed to the GPU CDCL solver.
status: GpuSolverProductionMaxSatSearchStatusExpected candidate status certified by GPU CDCL.
Trait Implementations§
Source§impl<'a> Clone for GpuSolverProductionMaxSatSearchCandidate<'a>
impl<'a> Clone for GpuSolverProductionMaxSatSearchCandidate<'a>
Source§fn clone(&self) -> GpuSolverProductionMaxSatSearchCandidate<'a>
fn clone(&self) -> GpuSolverProductionMaxSatSearchCandidate<'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 GpuSolverProductionMaxSatSearchCandidate<'a>
Auto Trait Implementations§
impl<'a> Freeze for GpuSolverProductionMaxSatSearchCandidate<'a>
impl<'a> RefUnwindSafe for GpuSolverProductionMaxSatSearchCandidate<'a>
impl<'a> Send for GpuSolverProductionMaxSatSearchCandidate<'a>
impl<'a> Sync for GpuSolverProductionMaxSatSearchCandidate<'a>
impl<'a> Unpin for GpuSolverProductionMaxSatSearchCandidate<'a>
impl<'a> UnsafeUnpin for GpuSolverProductionMaxSatSearchCandidate<'a>
impl<'a> UnwindSafe for GpuSolverProductionMaxSatSearchCandidate<'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