definition: |
showProductivity :: AOutFormat -> Productivity -> String showProductivity _ NoInfo = "no info" showProductivity _ Terminating = "terminating" showProductivity _ (DCalls qfs) = "productive / calls: " ++ "[" ++ intercalate ", " (map snd qfs) ++ "]" showProductivity _ Looping = "possibly looping" |
documentation: |
-- Show productivity information as a string. |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
name: |
showProductivity |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Analysis.Types.AOutFormat -> Productivity -> String |
solution-complete: |
operation might suspend on free variables |