definition: |
transformFlatProg :: Options -> String -> Prog -> IO (Prog, Bool) transformFlatProg opts modname (Prog mname imports tdecls fdecls opdecls)= do lookupreqinfo <- if withAnalysis opts then do (mreqinfo,reqinfo) <- loadAnalysisWithImports reqValueAnalysis modname imports printVerbose opts 2 $ "\nResult of \"RequiredValue\" analysis:\n" ++ showInfos (showAFType AText) (if verbosity opts == 3 then reqinfo else mreqinfo) return (flip lookupProgInfo reqinfo) else return (flip lookup preludeBoolReqValues) let (stats,newfdecls) = unzip (map (transformFuncDecl opts lookupreqinfo) fdecls) numtranseqs = totalTransEqs stats numtranseqv = totalTransEqv stats numbeqs = totalBEqs stats csvfname = mname ++ "_BOPTSTATS.csv" printVerbose opts 2 $ statSummary stats printVerbose opts 1 $ "Total number of transformed (dis)equalities: " ++ show numtranseqs ++ " (===) " ++ (if eqvTrans opts then " and " ++ show numtranseqv ++ " (==)" else "") ++ " (out of " ++ show numbeqs ++ ")" unless (verbosity opts < 2) $ do writeCSVFile csvfname (stats2csv stats) putStrLn ("Detailed statistics written to '" ++ csvfname ++"'") return ( Prog mname imports tdecls newfdecls opdecls , numtranseqs + numtranseqv > 0) |
demand: |
argument 3 |
deterministic: |
deterministic operation |
documentation: |
-- Perform the binding optimization on a FlatCurry program. -- Return the new FlatCurry program and a flag indicating whether -- something has been changed. |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
iotype: |
{(_,_,{Prog}) |-> _} |
name: |
transformFlatProg |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Options -> String -> FlatCurry.Types.Prog -> Prelude.IO (FlatCurry.Types.Prog, Prelude.Bool) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |