definition:
|
normalizeRule :: Rule f -> Rule f
normalizeRule r = let sub = listToSubst (zip (rVars r) (map TermVar [0..]))
in both (applySubst sub) r
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Normalizes a rule 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:
|
normalizeRule
|
precedence:
|
no precedence defined
|
result-values:
|
{(,)}
|
signature:
|
(Rewriting.Term.Term a) -> (Rewriting.Term.Term a, Rewriting.Term.Term a)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|