CurryInfo: benchmark-papers-3.0.0 / ExecuteBenchmarkPaper.bmLoadPath

definition: Info
 
bmLoadPath :: IO String
bmLoadPath = do
  ecurrypath <- getEnv "CURRYPATH"
  let ecurrypath' = case ecurrypath of ':':_ -> '.':ecurrypath
                                       _     -> ecurrypath
  return $ if null ecurrypath' then packageLoadPath
                               else ecurrypath' ++ ":" ++ packageLoadPath
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Computes the load path for compiling benchmark code.
The load path consists of the standard load path (defined by `CURRYPATH`)
and the additional load path for packages required by this package.
failfree: Info
 ()
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {() |-> _}
name: Info
 bmLoadPath
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.IO String
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms