https://gitlab.com/nomadic-labs/mi-cho-coq
Raw File
Tip revision: 5e263500c3959a66958da14be635d71604f015c9 authored by Yann Regis-Gianas on 28 April 2021, 19:06:18 UTC
Proof of xtzToToken
Tip revision: 5e26350
micheline_syntax.v
Require Import String ZArith.
Require Import location.

Inductive annotation := Mk_annot : location * location * string -> annotation.

Inductive micheline : Set :=
| SEQ (_ : list loc_micheline)
| PRIM (_ : location * location * string)
       (_ : list annotation) (_ : list loc_micheline)
| STR (_ : string)
| BYTES (_ : string)
| NUMBER (_ : Z)
with
  loc_micheline : Set :=
| Mk_loc_micheline : location * location * micheline -> loc_micheline.
back to top