https://gitlab.com/nomadic-labs/mi-cho-coq
Raw File
Tip revision: d30f3ab275af226afd76af79606c68f5e5fd568f authored by Arvid Jakobsson on 08 April 2021, 17:09:50 UTC
[build] configure should recreate the src/_CoqProject file on each run
Tip revision: d30f3ab
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