definition:
|
restrictSubst :: Subst f -> [VarIdx] -> Subst f
restrictSubst sub vs =
listToSubst [(v, t) | v <- vs, Just t <- [lookupSubst sub v]]
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns a new substitution with only those mappings from the given
--- substitution whose variable is in the given list of variables.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
restrictSubst
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Data.Map.Map Prelude.Int (Rewriting.Term.Term a) -> [Prelude.Int]
-> Data.Map.Map Prelude.Int (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
|