CurryInfo: benchmark-papers-3.0.0 / ExecuteBenchmarkPaper.mainExec

definition: Info
 
mainExec :: String -> Bool -> IO ()
mainExec texfile runlatex = do
  hascode <- extractCode texfile
  when (hascode && runlatex) $ do
    st <- system $ "pdflatex " ++ texfile
    when (st==0) $ do
      system $ "evince " ++ dropExtension texfile ++ ".pdf"
      return ()
    exitWith st
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> _}
name: Info
 mainExec
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 String -> Prelude.Bool -> 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