definition: |
trCondition :: Condition -> String trCondition (HAnd conds) = intercalate " and " (map trCondition conds) trCondition (HOr conds) = intercalate " or " (map trCondition conds) trCondition (Con cons) = trConstraint cons trCondition (Neg cond) = "(not "++ (trCondition cond)++")" trCondition (Fun fun spec cons) = "("++fun ++ "("++trSpecifier spec ++constr where ('(':'(':constr) = trConstraint cons |
demand: |
argument 1 |
deterministic: |
deterministic operation |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({HAnd}) |-> _ || ({HOr}) |-> _ || ({Con}) |-> _ || ({Neg}) |-> _ || ({Fun}) |-> _} |
name: |
trCondition |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Condition -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |