Enum debug_sat::Expression [] [src]

pub enum Expression {
    True,
    False,
    Var(usize),
    Not(usize),
    And(usizeusize),
    Or(usizeusize),
    Eq(usizeusize),
    Imply(usizeusize),
}

Stores a logical expression.

Variants

True.

False.

Variable.

Logical NOT.

Logical AND.

Logical OR.

Logical EQ.

Logical material implication.

Trait Implementations

impl Eq for Expression
[src]

impl PartialEq for Expression
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Clone for Expression
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Expression
[src]

[src]

Formats the value using the given formatter.

impl Hash for Expression
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more