definition:
|
showNarrowing :: (f -> String) -> Narrowing f -> String
showNarrowing s (NTerm t) = showTerm s t
showNarrowing s (NStep t p sub n) =
showTerm s t ++ "\n\x2192" ++ "[" ++ showPos p ++ ", "
++ showSubst s (restrictSubst sub (tVars t)) ++ "] "
++ showNarrowing s n
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms a narrowing into a string representation.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{NTerm}) |-> _ || (_,{NStep}) |-> _}
|
name:
|
showNarrowing
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(a -> String) -> Narrowing a -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|