CurryInfo: cass-4.1.0 / CASS.Server.analyzeGenericWithDebug

definition:
analyzeGenericWithDebug :: (Eq a, Read a, Show a, ReadWrite a) =>
  Maybe Int -> Analysis a -> String -> IO (Either (ProgInfo a) String)
analyzeGenericWithDebug debuglevel analysis moduleName = do
  configrc <- readRCFile
  let cconfig = maybe configrc
                      (\dl -> setDebugLevel dl configrc)
                      debuglevel
  analyzeGenericWithOptions cconfig analysis moduleName
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Start the analysis system with a particular analysis and
--- an optional debug level (first argument).
--- The analysis must be a registered one if workers are used.
--- If it is a combined analysis, the base analysis must be also
--- a registered one. The options are read from the rc file.
--- Returns either the analysis information or an error message.
indeterministic:
might be indeterministic
infix:
no fixity defined
name:
analyzeGenericWithDebug
precedence:
no precedence defined
result-values:
_
signature:
(Prelude.Eq a, Prelude.Read a, Prelude.Show a, RW.Base.ReadWrite a) => Prelude.Maybe Prelude.Int
-> Analysis.Types.Analysis a -> String
-> Prelude.IO (Prelude.Either (Analysis.ProgInfo.ProgInfo a) String)
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term