definition:
|
showNDEffect :: AOutFormat -> NDEffect -> String
showNDEffect ANote (NDEffect ornd narr ifs) = intercalate " " $
(if ornd then ["choice"] else []) ++
(if narr then ["narr"] else []) ++
(if not (null ifs) then ["narrIf"++show ifs] else [])
showNDEffect AText (NDEffect ornd narr ifs) = intercalate " / " $
(if ornd then ["choice"] else []) ++
(if narr then ["possibly non-deterministic narrowing steps"] else []) ++
(if not (null ifs)
then ["non-deterministic narrowing if argument" ++
(if length ifs == 1 then ' ' : show (head ifs) ++ " is non-ground"
else "s " ++ show ifs ++ " are non-ground")]
else [])
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Show non-determinitic effect information as a string.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({ANote},{NDEffect}) |-> _ || ({AText},{NDEffect}) |-> _}
|
name:
|
showNDEffect
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Analysis.Types.AOutFormat -> NDEffect -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|