definition:
|
normalizeTerm :: Term f -> Term f
normalizeTerm t = normalize t
where
sub = Map.fromList (zip (tVars t) (map TermVar [0..]))
normalize t'@(TermVar v) = fromMaybe t' (Map.lookup v sub)
normalize (TermCons c ts) = TermCons c (map normalize ts)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Normalizes a term by renaming all variables with an increasing order,
--- starting from the minimum possible variable.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
normalizeTerm
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Term a -> Term a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|