final case class And(literals: Set[Literal]) extends Formula with Product with Serializable
A conjunction of literals.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- And
- Serializable
- Serializable
- Product
- Equals
- Formula
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
&&(f: Formula): Formula
Constructs a formula that is true iff this formula and
f
are both true.Constructs a formula that is true iff this formula and
f
are both true.- Definition Classes
- Formula
- val literals: Set[Literal]
-
def
proves(atom: Atom, atoms: Atom*): Clause
Constructs a clause that proves
atoms
when this formula is true.Constructs a clause that proves
atoms
when this formula is true.- Definition Classes
- Formula