Struct splr::cdb::Clause[][src]

pub struct Clause {
    pub lits: Vec<Lit>,
    pub rank: u16,
    pub search_from: usize,
    // some fields omitted
}

A representation of ‘clause’

Fields

lits: Vec<Lit>

The literals in a clause.

rank: u16

A static clause evaluation criterion like LBD, NDD, or something.

search_from: usize

the index from which propagate starts searching an un-falsified literal.

Trait Implementations

impl ClauseIF for Clause[src]

impl Clone for Clause[src]

impl Debug for Clause[src]

impl Default for Clause[src]

impl Display for Clause[src]

impl FlagIF for Clause[src]

impl Index<Range<usize>> for Clause[src]

type Output = [Lit]

The returned type after indexing.

impl Index<RangeFrom<usize>> for Clause[src]

type Output = [Lit]

The returned type after indexing.

impl Index<usize> for Clause[src]

type Output = Lit

The returned type after indexing.

impl IndexMut<Range<usize>> for Clause[src]

impl IndexMut<RangeFrom<usize>> for Clause[src]

impl IndexMut<usize> for Clause[src]

impl<'a> IntoIterator for &'a Clause[src]

type Item = &'a Lit

The type of the elements being iterated over.

type IntoIter = Iter<'a, Lit>

Which kind of iterator are we turning this into?

impl<'a> IntoIterator for &'a mut Clause[src]

type Item = &'a Lit

The type of the elements being iterated over.

type IntoIter = Iter<'a, Lit>

Which kind of iterator are we turning this into?

impl PartialEq<Clause> for Clause[src]

impl PartialOrd<Clause> for Clause[src]

impl StructuralPartialEq for Clause[src]

Auto Trait Implementations

impl RefUnwindSafe for Clause

impl Send for Clause

impl Sync for Clause

impl Unpin for Clause

impl UnwindSafe for Clause

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.