https://gitlab.com/nomadic-labs/mi-cho-coq
Raw File
Tip revision: 6ba8ea5c33ed9df4a4f6be9fd3e2a5030aae9237 authored by Yann Regis-Gianas on 03 March 2021, 13:20:01 UTC
Make mutez more readable by keeping the proof implicit
Tip revision: 6ba8ea5
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