CurryInfo: property-prover-2.0.0 / Curry2SMT.tdecl2SMT

definition:
tdecl2SMT :: TypeDecl -> SMT.Command
tdecl2SMT (TypeSyn tc _ _ _) =
  error $ "Cannot translate type synonym '" ++ showQName tc ++ "' into SMT!"
tdecl2SMT (TypeNew tc _ _ _) =
  error $ "Cannot translate newtype '" ++ showQName tc ++ "' into SMT!"
tdecl2SMT (Type tc _ tvars consdecls) =
  SMT.DeclareDatatypes
   [(SMT.SortDecl (tcons2SMT tc) (length tvars),
     SMT.PT (map (\ (v,_) -> 'T' : show v) tvars) (map tconsdecl consdecls))]
 where
  tconsdecl (Cons qn _ _ texps) =
    let cname = transOpName qn
    in SMT.Cons cname (map (texp2sel qn) (zip [1..] texps))

  texp2sel cname (i,texp) = SMT.SV (genSelName cname i)
                              (type2sort [tc] False False texp)
demand:
argument 1
deterministic:
deterministic operation
documentation:
----------------------------------------------------------------------------
--- Translates a type declaration into an SMT datatype declaration.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({TypeSyn}) |-> _ || ({TypeNew}) |-> _ || ({Type}) |-> {DeclareDatatypes}}
name:
tdecl2SMT
precedence:
no precedence defined
result-values:
_
signature:
FlatCurry.Types.TypeDecl -> 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