definition:
|
enforceNormalForm :: Options -> String -> a -> IO ()
enforceNormalForm opts s x
| optEnforceNF opts
= do whenStatus opts $
printInfoString $ "EVALUATE " ++ s ++ " TO NORMAL FORM..."
(id $!! x) `seq` return ()
printWhenStatus opts "DONE"
| otherwise
= return ()
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- I/O action to force evaluation of the argument to normal form.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
enforceNormalForm
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Verify.Options.Options -> String -> a -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|