pub struct DimacsCnf {
pub num_vars: usize,
pub clauses: Vec<Vec<Lit>>,
}Expand description
A parsed CNF formula: num_vars variables and clauses over packed Lits.
Fields§
§num_vars: usize§clauses: Vec<Vec<Lit>>Implementations§
Trait Implementations§
impl Eq for DimacsCnf
impl StructuralPartialEq for DimacsCnf
Auto Trait Implementations§
impl Freeze for DimacsCnf
impl RefUnwindSafe for DimacsCnf
impl Send for DimacsCnf
impl Sync for DimacsCnf
impl Unpin for DimacsCnf
impl UnsafeUnpin for DimacsCnf
impl UnwindSafe for DimacsCnf
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