definition:
|
matchSorts :: [SMT.Sort] -> [SMT.Sort] -> Maybe TPSubst
matchSorts [] [] = Just emptyTPSubst
matchSorts [] (_:_) = Nothing
matchSorts (_:_) [] = Nothing
matchSorts (t1:ts1) (t2:ts2) = do
s <- matchSort t1 t2
t <- matchSorts (map (substSort s) ts1) ts2
return (FM.union s t)
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]},{[]}) |-> {Just} || ({[]},{:}) |-> {Nothing} || ({:},{[]}) |-> {Nothing} || ({:},{:}) |-> _}
|
name:
|
matchSorts
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[Language.SMTLIB.Types.Sort] -> [Language.SMTLIB.Types.Sort]
-> Prelude.Maybe (Data.Map.Map String 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
|