definition: |
funSigTermsToCommands :: [FunSigTerm] -> [SMT.Command] funSigTermsToCommands fts = map (\(_, (FunSig fn ss s), _) -> SMT.DeclareFun fn ss s) fts ++ concatMap (\(_, (FunSig fn _ _), term) -> [ SMT.Comment "" , SMT.Comment $ "Axiomatization of function '" ++ fn ++ "'" , sAssert term]) fts |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- Converts a list of function signatures into a list of commands that -- axiomatize those functions. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
funSigTermsToCommands |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[([String], FunSig, Language.SMTLIB.Types.Term)] -> [Language.SMTLIB.Types.Command] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |