definition: |
boolVars2AssocList :: [Boolean] -> [(Int,Bool)] boolVars2AssocList = map bvar2assoc where bvar2assoc bv = case bv of Var i -> (i,True) Not (Var i) -> (i,False) _ -> error $ "boolVars2AssocList: not a variable: " ++ show bv |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Translates a list of Boolean variables into a list associating --- the variable indices to Boolean values. |
failfree: |
() |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> {map}} |
name: |
boolVars2AssocList |
precedence: |
no precedence defined |
result-values: |
{map} |
signature: |
[Dimacs.Types.Boolean] -> [(Prelude.Int, Prelude.Bool)] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |