CurryInfo: verify-non-fail-2.0.0 / Verify.WithSMT.tdecl2SMT

definition:
tdecl2SMT :: TypeDecl -> 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) =
  DeclareDatatypes
   [(tcons2SMT tc, length tvars,
     DT (map (\ (v,_) -> 'T' : show v) tvars) (map tconsdecl consdecls))]
 where
  tconsdecl (Cons qn _ _ texps) =
    let cname = transOpName qn
    in DCons cname (map (texp2sel qn) (zip [1..] texps))

  texp2sel cname (i,texp) = (genSelName cname i, type2sortD True texp)
demand:
argument 1
deterministic:
deterministic operation
documentation:
---------------------------------------------------------------------------
--- Translates a type declaration into an SMT datatype declaration.
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 -> Verify.ESMT.Command
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term