definition:
|
substSort :: TPSubst -> SMT.Sort -> SMT.Sort
substSort sub (SMT.SComb sn ss) =
maybe (SMT.SComb sn (map (substSort sub) ss)) id (FM.lookup sn sub)
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Applies a sort substitution to a sort.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{SComb}) |-> _}
|
name:
|
substSort
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Data.Map.Map String Language.SMTLIB.Types.Sort -> Language.SMTLIB.Types.Sort
-> Language.SMTLIB.Types.Sort
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|