pub struct SatisfiabilityChecker {
pub n_vars: usize,
pub clauses: Vec<Vec<Literal>>,
}Expand description
A propositional formula in Conjunctive Normal Form (CNF).
Clauses are disjunctions; the formula is the conjunction of all clauses.
Fields§
§n_vars: usizeNumber of propositional variables.
clauses: Vec<Vec<Literal>>CNF clauses.
Implementations§
Source§impl SatisfiabilityChecker
impl SatisfiabilityChecker
Sourcepub fn add_clause(&mut self, clause: Vec<Literal>)
pub fn add_clause(&mut self, clause: Vec<Literal>)
Add a clause (disjunction of literals).
Sourcepub fn solve(&self) -> Option<Vec<bool>>
pub fn solve(&self) -> Option<Vec<bool>>
Check satisfiability using the DPLL algorithm.
Returns Some(assignment) where assignment\[i\] is the truth value
for variable i, or None if unsatisfiable.
Sourcepub fn check_assignment(&self, assignment: &[bool]) -> bool
pub fn check_assignment(&self, assignment: &[bool]) -> bool
Check whether the given assignment satisfies all clauses.
Sourcepub fn clause_count(&self) -> usize
pub fn clause_count(&self) -> usize
Return the number of clauses.
Trait Implementations§
Source§impl Clone for SatisfiabilityChecker
impl Clone for SatisfiabilityChecker
Source§fn clone(&self) -> SatisfiabilityChecker
fn clone(&self) -> SatisfiabilityChecker
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 moreAuto Trait Implementations§
impl Freeze for SatisfiabilityChecker
impl RefUnwindSafe for SatisfiabilityChecker
impl Send for SatisfiabilityChecker
impl Sync for SatisfiabilityChecker
impl Unpin for SatisfiabilityChecker
impl UnsafeUnpin for SatisfiabilityChecker
impl UnwindSafe for SatisfiabilityChecker
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.