CurryInfo: verify-non-fail-2.0.0 / Main.verifyModuleIfNew

definition:
verifyModuleIfNew :: TermDomain a => Analysis a -> IORef ProgInfo
                  -> IORef (AnalysisStore a) -> Options -> String -> IO ()
verifyModuleIfNew valueanalysis pistore astore opts0 mname = do
  z3exists <- fileInPath "z3"
  let z3msg = "Option '--nosmt' activated since SMT solver Z3 not found in PATH!"
  opts <- if z3exists || not (optSMT opts0)
            then return opts0
            else do printInfoLine z3msg
                    return opts0 { optSMT = False }
  printWhenStatus opts $ "Processing module '" ++ mname ++ "':"
  flatprog <- getFlatProgFor pistore mname
  outdatedtypes <- typeFilesOutdated opts mname
  if outdatedtypes || optRerun opts || not (null (optFunction opts))
    then verifyModule valueanalysis pistore astore opts mname flatprog
    else do
      let fdecls       = progFuncs flatprog
          visfuncs     = filter (\fn -> optGenerated opts || isCurryID fn)
                                (map funcName
                                     (filter ((== Public) . funcVisibility)
                                             fdecls))
          visfuncset   = Set.fromList visfuncs
          isVisible qf = Set.member qf visfuncset
      let qname  = ("","")                  -- some (unused) QName
          avalue = startValue valueanalysis -- some (unused) abstract type value
      when (optIOTypes opts) $ do
        printWhenStatus opts "Reading in/out types from previous verification..."
        iotypes <- readIOTypes opts mname
        -- note: the `asTypeOf` expression is necessary to convince the type
        -- checker that `iotypes` is parametric over the type variable `a`:
        printIOTypes opts
          (filter (isVisible . fst)
                  (iotypes `asTypeOf` [(qname, valueInOutType avalue)]))
      printWhenStatus opts "Reading call types from previous verification..."
      (ctypes,nfconds) <- readCallCondTypes opts mname
      -- note: the `asTypeOf` expression is necessary to convince the type
      -- checker that `ctype` is parametric over the type variable `a`:
      printVerifyResults opts mname isVisible fdecls
        (ctypes `asTypeOf` [(qname, Just [avalue])]) nfconds
      return ()
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Verify a single module if necessary, i.e., not previously verified.
indeterministic:
might be indeterministic
infix:
no fixity defined
name:
verifyModuleIfNew
precedence:
no precedence defined
result-values:
_
signature:
Analysis.TermDomain.TermDomain a => Analysis.Types.Analysis a
-> Data.IORef.IORef Verify.ProgInfo.ProgInfo
-> Data.IORef.IORef (Verify.Helpers.AnalysisStore a) -> Verify.Options.Options
-> String -> Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term