definition:
|
showReduction :: (f -> String) -> Reduction f -> String
showReduction s (NormalForm t) = showTerm s t
showReduction s (RStep t ps r) =
showTerm s t ++ "\n\x2192" ++ "[" ++ intercalate "," (map showPos ps) ++ "] "
++ showReduction s r
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms a reduction into a string representation.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{NormalForm}) |-> _ || (_,{RStep}) |-> _}
|
name:
|
showReduction
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> String) -> Reduction a -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|