CurryInfo: verify-non-fail-2.0.0 / Verify.WithSMT.loadModulesForQNames

definition: Info
 
loadModulesForQNames :: Options -> IORef ProgInfo -> [QName] -> IO ()
loadModulesForQNames opts pistore qns = mapM_ loadMod (nub (map fst qns))
 where
  loadMod m = do
    mloaded <- hasModInfoFor pistore m
    unless mloaded $ do -- we must load a new module
      printWhenStatus opts $ "Loading module '" ++ m ++ "'..."
      addModInfoFor pistore m
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Extract all user-defined FlatCurry functions that might be called
by a given list of function names provided as the last argument.
The second argument is an `IORef` to the currently loaded modules.
Its contents will be extended when necessary.
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,_) |-> _}
name: Info
 loadModulesForQNames
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Verify.Options.Options -> Data.IORef.IORef Verify.ProgInfo.ProgInfo
-> [(String, String)] -> Prelude.IO ()
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term