definition: |
flattenAnd :: [Boolean] -> [Boolean] flattenAnd cs = case cs of [] -> [] ((And fs):gs) -> flattenAnd (fs ++ gs) (f:fs) -> flatten f : flattenAnd fs |
demand: |
argument 1 |
deterministic: |
deterministic operation |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({[]}) |-> {[]} || ({:}) |-> _} |
name: |
flattenAnd |
precedence: |
no precedence defined |
result-values: |
{:,[]} |
signature: |
[Dimacs.Types.Boolean] -> [Dimacs.Types.Boolean] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |