definition:
|
showNondet :: AOutFormat -> Nondet -> String
showNondet _ nd = showND True nd
where
showND _ Det = "D"
showND _ Nondet = "ND"
showND top (FunD d1 d2) = bracket top
(showND False d1 ++ " -> " ++ showND top d2)
bracket top s = if top then s else "(" ++ s ++ ")"
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Show determinism information as a string.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
showNondet
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Analysis.Types.AOutFormat -> Nondet -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|