satyros-0.1.0.1: Step-by-step SAT solver for educational purposes
Safe HaskellNone
LanguageHaskell2010

Satyros.CNF.Clause

Documentation

newtype ClauseLike a Source #

Constructors

ClauseLike [a] 

Bundled Patterns

pattern Clause :: [Literal] -> Clause 

Instances

Instances details
Show a => Show (ClauseLike a) Source # 
Instance details

Defined in Satyros.CNF.Clause

Semigroup (ClauseLike a) Source # 
Instance details

Defined in Satyros.CNF.Clause

Monoid (ClauseLike a) Source # 
Instance details

Defined in Satyros.CNF.Clause

Wrapped (ClauseLike a) Source # 
Instance details

Defined in Satyros.CNF.Clause

Associated Types

type Unwrapped (ClauseLike a) #

ClauseLike a1 ~ t => Rewrapped (ClauseLike a2) t Source # 
Instance details

Defined in Satyros.CNF.Clause

HasClauses (Storage s) (Vector Clause) Source # 
Instance details

Defined in Satyros.DPLL.Storage

type Unwrapped (ClauseLike a) Source # 
Instance details

Defined in Satyros.CNF.Clause

type Unwrapped (ClauseLike a) = [a]