https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: e95277e866c97766cd9b3fe9179e8249b5bfb44b authored by Pierre-Yves Strub on 05 September 2023, 13:35:12 UTC
multivariate polynomials type
Tip revision: e95277e
ecBaseLogic.ml
(* -------------------------------------------------------------------- *)
open EcTypes
open EcCoreFol

(* -------------------------------------------------------------------- *)
type local_kind =
| LD_var    of ty * form option
| LD_mem    of EcMemory.memtype
| LD_modty  of EcModules.module_type
| LD_hyp    of form
| LD_abs_st of EcModules.abs_uses

type l_local = EcIdent.t * local_kind

type hyps = {
  h_tvar  : EcDecl.ty_params;
  h_local : l_local list;
}
back to top