CurryInfo: currycheck-4.0.0 / CC.AnalysisHelpers.getProductivityInfos

definition:
getProductivityInfos :: Options -> [String] -> IO (QName -> Productivity)
getProductivityInfos opts mods = do
  ainfo <- analyzeModules opts "productivity" productivityAnalysis
                          (map dropPublicSuffix mods)
  return (\qn -> maybe NoInfo id (lookupProgInfo (dropPublicQName qn) ainfo))
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- Analyzes a list of modules for their productivity behavior.
-- If a module is a `_PUBLIC` module, we analyze the original module
-- and map these results to the `_PUBLIC` names, in order to support
-- caching of analysis results for the original modules.
indeterministic:
might be indeterministic
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
getProductivityInfos
precedence:
no precedence defined
result-values:
_
signature:
CC.Options.Options -> [String] -> Prelude.IO ((String, String)
-> Analysis.Termination.Productivity)
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term