definition: |
classifyTest :: Options -> CurryProg -> CFuncDecl -> Test classifyTest opts prog test = if isPropIOType (typeOfQualType (funcType test)) then IOTest tname 0 else maybe (PropTest tname (typeOfQualType (funcType test)) 0) expsToEquivTest (isEquivProperty test) where tname = funcName test expsToEquivTest exps = case exps of (CSymbol f1,CSymbol f2) -> EquivTest tname f1 f2 (defaultingType (funcTypeOf f1)) 0 (CTyped (CSymbol f1) qtexp, CSymbol f2) -> EquivTest tname f1 f2 (defaultingType qtexp) 0 (CSymbol f1, CTyped (CSymbol f2) qtexp) -> EquivTest tname f1 f2 (defaultingType qtexp) 0 (CTyped (CSymbol f1) qtexp, CTyped (CSymbol f2) _) -> EquivTest tname f1 f2 (defaultingType qtexp) 0 (e1,e2) -> error $ "Illegal equivalence property '" ++ snd tname ++ "':\n" ++ showCExpr e1 ++ " <=> " ++ showCExpr e2 defaultingType = poly2defaultType opts . typeOfQualType . defaultQualType funcTypeOf f = maybe (error $ "Cannot find type of " ++ show f ++ "!") funcType (find (\fd -> funcName fd == f) (functions prog)) |
demand: |
argument 3 |
deterministic: |
deterministic operation |
documentation: |
-- Classify the test represented by a function declaration -- as either PropTest or IOTest. |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
name: |
classifyTest |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
CC.Options.Options -> AbstractCurry.Types.CurryProg -> AbstractCurry.Types.CFuncDecl -> Test |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |